We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 841e840 commit c058b18Copy full SHA for c058b18
system/Debug/Toolbar/Views/toolbar.js
@@ -84,15 +84,15 @@ var ciDebugBar = {
84
var state = tab.style.display;
85
86
// Hide all tabs
87
- var tabs = this.toolbar.querySelectorAll('.tab');
+ var tabs = document.querySelectorAll('#debug-bar .tab');
88
89
for (var i = 0; i < tabs.length; i++)
90
{
91
tabs[i].style.display = 'none';
92
}
93
94
// Mark all labels as inactive
95
- var labels = this.toolbar.querySelectorAll('.ci-label');
+ var labels = document.querySelectorAll('#debug-bar .ci-label');
96
97
for (var i = 0; i < labels.length; i++)
98
0 commit comments