Make clicking the trigger show and hide the ULS

Bugzilla:
https://bugzilla.wikimedia.org/show_bug.cgi?id=41768
This commit is contained in:
Amir E. Aharoni
2012-11-16 19:17:54 +02:00
parent f80683b1d8
commit c9a072934c

View File

@@ -319,7 +319,9 @@
click: function( e ) {
e.stopPropagation();
e.preventDefault();
if ( !this.shown ) {
if ( this.shown ) {
this.hide();
} else {
this.show();
}
},