From ec04703d47ab3cb061669b26c03da43624957455 Mon Sep 17 00:00:00 2001 From: Santhosh Thottingal Date: Mon, 20 Aug 2012 10:15:34 +0530 Subject: [PATCH] Fix the close button of ULS Regression from I9d16cbac Change-Id: Ib0a64a9d8909e10c6f83727d4056f663c49d7ec7 --- src/jquery.uls.core.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jquery.uls.core.js b/src/jquery.uls.core.js index 665456f..117da35 100644 --- a/src/jquery.uls.core.js +++ b/src/jquery.uls.core.js @@ -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) )