Improve output: distinguish between failed assertions (failures) and unexpected exceptions (errors), and print a filtered stack trace for any exception.
This commit is contained in:
commit
4f2e303079
1839 changed files with 235630 additions and 0 deletions
20
webapp/web/js/controls.js
vendored
Normal file
20
webapp/web/js/controls.js
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
|
||||
|
||||
/*
|
||||
toggles admin panel using jQuery
|
||||
*/
|
||||
|
||||
$(document).ready(function(){
|
||||
|
||||
// Sliding admin panel
|
||||
$("div.admin .toggle").css("cursor","pointer");
|
||||
$("div.admin .toggle").click(function(){
|
||||
$(this).parent().children("div.panelContents").slideToggle("fast");
|
||||
})
|
||||
|
||||
$("div.navlinkblock").removeClass("navlinkblock").addClass("navlinkblock-collapsed").click(function(){
|
||||
$(this).removeClass("navlinkblock-collapsed").toggleClass("navlinkblock-expanded");
|
||||
});
|
||||
|
||||
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue