Fix the close button of ULS

Regression from I9d16cbac

Change-Id: Ib0a64a9d8909e10c6f83727d4056f663c49d7ec7
This commit is contained in:
Santhosh Thottingal
2012-08-20 10:15:34 +05:30
parent 3f3608200a
commit ca4ba4f270

View File

@@ -209,7 +209,7 @@
that.$element.on( 'click', $.proxy( that.click, that ) );
// Handle click on close button
this.$menu.find( "#uls-close" ).on( 'click', $.proxy( that.click, that ) );
this.$menu.find( "#uls-close" ).on( 'click', $.proxy( that.hide, that ) );
// Handle key press events on the menu
that.$menu.on('keypress', $.proxy(this.keypress, this) )