mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
8 lines
253 B
JavaScript
8 lines
253 B
JavaScript
(function ($) {
|
|
$('#djDebug a.djDebugToggle').on('click', function(e) {
|
|
e.preventDefault();
|
|
$(this).parent().find('.djDebugCollapsed').toggle();
|
|
$(this).parent().find('.djDebugUncollapsed').toggle();
|
|
});
|
|
})(djdt.jQuery);
|