8000 Form Debugger JavaScript improvements by wouterj · Pull Request #9857 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Form Debugger JavaScript improvements #9857

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 16 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[WebProfilerBundle] Added "use strict" statements
  • Loading branch information
webmozart committed Dec 30, 2013
commit 505c5be309370f44abd802c5e581bfb85fb799b0
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,8 @@

<script>
function Toggler() {
"use strict";

var expand = function (button) {
var targetId = button.dataset.toggleTargetId,
target = document.getElementById(targetId);
Expand Down Expand Up @@ -252,6 +254,8 @@
}

function TabView() {
"use strict";

var activeTab = null,

activeTarget = null,
Expand Down
0