From 350c13844deca1581c6501962c0d552049d0c090 Mon Sep 17 00:00:00 2001 From: Santhosh Thottingal Date: Tue, 14 Aug 2012 15:05:47 +0530 Subject: [PATCH] WebFonts integration with ULS display settings. This does not add much functionality. That will come in future commits. This commit has many cleanup, refactoring on the display settings, language settings code. Change-Id: I7fbc3ebb9b67c1afd80f159c2d82cd2a1c6bea74 --- examples/index.html | 2 +- src/jquery.uls.core.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/index.html b/examples/index.html index 17748b5..538bc7b 100644 --- a/examples/index.html +++ b/examples/index.html @@ -50,7 +50,7 @@
- +
diff --git a/src/jquery.uls.core.js b/src/jquery.uls.core.js index 74f939b..6c3f1a2 100644 --- a/src/jquery.uls.core.js +++ b/src/jquery.uls.core.js @@ -98,7 +98,7 @@ that.$element.on( 'click', $.proxy( that.click, that ) ); // Handle click on close button - $( ".icon-close" ).on( 'click', $.proxy( that.click, that ) ); + $( "#uls-close" ).on( 'click', $.proxy( that.click, that ) ); // Handle key press events on the menu that.$menu.on('keypress', $.proxy(this.keypress, this) )