From 2a5badd14d312b0179449b0128fa35910ead3f20 Mon Sep 17 00:00:00 2001 From: cwt137 Date: Fri, 20 May 2011 06:27:52 -0700 Subject: [PATCH 1/3] Adds missing button in toolbar theming example. Fixes issue #1674 --- docs/toolbars/bars-themes.html | 1 + 1 file changed, 1 insertion(+) mode change 100755 => 100644 docs/toolbars/bars-themes.html diff --git a/docs/toolbars/bars-themes.html b/docs/toolbars/bars-themes.html old mode 100755 new mode 100644 index 43a76c1f..8326b853 --- a/docs/toolbars/bars-themes.html +++ b/docs/toolbars/bars-themes.html @@ -120,6 +120,7 @@ left right up + down
From 9fce3e1f722013e2aaa70fb7be1be6b87cc746c1 Mon Sep 17 00:00:00 2001 From: "Eddie Monge Jr." Date: Fri, 20 May 2011 11:36:28 -0700 Subject: [PATCH 2/3] Minified CSS was getting double info --- Makefile | 1 - 1 file changed, 1 deletion(-) mode change 100755 => 100644 Makefile diff --git a/Makefile b/Makefile old mode 100755 new mode 100644 index bd71b11a..34953852 --- a/Makefile +++ b/Makefile @@ -94,7 +94,6 @@ css: init # Build the minified CSS file cssmin: init css # Build the minified CSS file - @@head -8 js/jquery.mobile.core.js | ${SED_VER} > ${OUTPUT}/${CSSMIN} @@java -jar build/yuicompressor-2.4.4.jar --type css ${OUTPUT}/${CSS} >> ${OUTPUT}/${CSSMIN} # Build the normal JS file From fe7ba3f6c6dfe329322e0c598374c1a8332902d4 Mon Sep 17 00:00:00 2001 From: John Bender Date: Fri, 20 May 2011 12:31:53 -0700 Subject: [PATCH 3/3] jquery style compliance for nsNormalize --- js/jquery.mobile.core.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/jquery.mobile.core.js b/js/jquery.mobile.core.js index c9d9b462..104ed333 100644 --- a/js/jquery.mobile.core.js +++ b/js/jquery.mobile.core.js @@ -120,7 +120,7 @@ nsNormalize: function(prop){ if(!prop) return; - return $.camelCase($.mobile.ns + prop); + return $.camelCase( $.mobile.ns + prop ); } });