aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/media/toolbar.js
blob: 8c0a86d480bb17d033f9697ffbe3ab2f06bd55d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
jQuery.noConflict();
jQuery(document).ready(function() {
    var current = null;
    jQuery('#djDebugPanelList li a').click(function() {
        if (current) { current.hide(); }
        current = jQuery('#djDebug #' + this.className);
        current.show();
        return false;
    });
    jQuery('#djDebug a.close').click(function() {
        if (current) { current.hide(); }
        current = null;
        return false;
    })
});