diff --git a/docs/_assets/images/version.png b/docs/_assets/images/version.png index 9554dad9..20263a00 100644 Binary files a/docs/_assets/images/version.png and b/docs/_assets/images/version.png differ diff --git a/docs/_assets/js/jqm-docs.js b/docs/_assets/js/jqm-docs.js index 83c744a4..ffe95266 100644 --- a/docs/_assets/js/jqm-docs.js +++ b/docs/_assets/js/jqm-docs.js @@ -29,7 +29,7 @@ $('div').live('pagecreate',function(event){ //collapse page navs after use $(function(){ - $('body').delegate('.content-secondary .ui-collapsible-content', 'vclick', function(){ + $('body').delegate('.content-secondary .ui-collapsible-content', 'click', function(){ $(this).trigger("collapse") }); }); diff --git a/docs/forms/texts/methods.html b/docs/forms/texts/methods.html index 82137412..ba8ef05f 100644 --- a/docs/forms/texts/methods.html +++ b/docs/forms/texts/methods.html @@ -41,14 +41,14 @@
enable enable a disabled text input.

-$('select').selectmenu('enable');			
+$('select').textinput('enable');			
 				
disable disable a text input.

-$('select').selectmenu('disable');			
+$('select').textinput('disable');			
 				
diff --git a/docs/pages/multipage-template.html b/docs/pages/multipage-template.html index 5e45bc4f..9794899c 100755 --- a/docs/pages/multipage-template.html +++ b/docs/pages/multipage-template.html @@ -5,9 +5,9 @@ Page Title - - - + + + diff --git a/docs/pages/page-template.html b/docs/pages/page-template.html index c1ad8005..8ca290dc 100755 --- a/docs/pages/page-template.html +++ b/docs/pages/page-template.html @@ -5,9 +5,9 @@ Page Title - - - + + + diff --git a/js/jquery.mobile.support.js b/js/jquery.mobile.support.js index 522b547a..a8a790d1 100644 --- a/js/jquery.mobile.support.js +++ b/js/jquery.mobile.support.js @@ -4,21 +4,21 @@ * Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses. */ -(function( $, undefined ) { +(function( $, undefined ) { -var fakeBody = $( "" ).prependTo( "html" ), +var fakeBody = $( "" ).prependTo( "html" ), fbCSS = fakeBody[ 0 ].style, vendors = [ "webkit", "moz", "o" ], webos = "palmGetResource" in window, //only used to rule out scrollTop bb = window.blackberry; //only used to rule out box shadow, as it's filled opaque on BB // thx Modernizr -function propExists( prop ) { +function propExists( prop ) { var uc_prop = prop.charAt( 0 ).toUpperCase() + prop.substr( 1 ), - props = ( prop + " " + vendors.join( uc_prop + " " ) + uc_prop ).split( " " ); + props = ( prop + " " + vendors.join( uc_prop + " " ) + uc_prop ).split( " " ); for ( var v in props ){ - if ( fbCSS[ v ] !== undefined ) { + if ( fbCSS[ v ] !== undefined ) { return true; } } @@ -33,12 +33,12 @@ function baseTagTest() { link, rebase; if ( !base.length ) { - base = fauxEle = $( "", { "href": fauxBase} ).appendTo( "head" ); + base = fauxEle = $( "", { "href": fauxBase }).appendTo( "head" ); } else { href = base.attr( "href" ); } - link = $( "" ).prependTo( fakeBody ); + link = $( "" ).prependTo( fakeBody ); rebase = link[ 0 ].href; base[ 0 ].href = href ? href : location.pathname; @@ -82,40 +82,38 @@ fakeBody.remove(); // $.mobile.ajaxBlacklist is used to override ajaxEnabled on platforms that have known conflicts with hash history updates (BB5, Symbian) // or that generally work better browsing in regular http for full page refreshes (Opera Mini) -// Note: This detection below is used as a last resort. +// Note: This detection below is used as a last resort. // We recommend only using these detection methods when all other more reliable/forward-looking approaches are not possible var nokiaLTE7_3 = (function(){ - + var ua = window.navigator.userAgent; //The following is an attempt to match Nokia browsers that are running Symbian/s60, with webkit, version 7.3 or older - return ua.indexOf( "Nokia" ) > -1 - && ( ua.indexOf( "Symbian/3" ) > -1 || ua.indexOf( "Series60/5" ) > -1 ) - && ua.indexOf( "AppleWebKit" ) > -1 - && ua.match( /(BrowserNG|NokiaBrowser)\/7\.[0-3]/ ); + return ua.indexOf( "Nokia" ) > -1 && + ( ua.indexOf( "Symbian/3" ) > -1 || ua.indexOf( "Series60/5" ) > -1 ) && + ua.indexOf( "AppleWebKit" ) > -1 && + ua.match( /(BrowserNG|NokiaBrowser)\/7\.[0-3]/ ); })(); $.mobile.ajaxBlacklist = - // BlackBerry browsers, pre-webkit - window.blackberry && !window.WebKitPoint - // Opera Mini - || window.operamini && Object.prototype.toString.call( window.operamini ) === "[object OperaMini]" - // Symbian webkits pre 7.3 - || nokiaLTE7_3; + // BlackBerry browsers, pre-webkit + window.blackberry && !window.WebKitPoint || + // Opera Mini + window.operamini && Object.prototype.toString.call( window.operamini ) === "[object OperaMini]" || + // Symbian webkits pre 7.3 + nokiaLTE7_3; // Lastly, this workaround is the only way we've found so far to get pre 7.3 Symbian webkit devices // to render the stylesheets when they're referenced before this script, as we'd recommend doing. // This simply reappends the CSS in place, which for some reason makes it apply -if( nokiaLTE7_3 ){ - $(function(){ - $( "head link[rel=stylesheet]" ).each(function(){ - $( this ).attr( "rel", "alternate stylesheet" ).attr( "rel", "stylesheet" ); - }); - }); +if ( nokiaLTE7_3 ) { + $(function() { + $( "head link[rel=stylesheet]" ).attr( "rel", "alternate stylesheet" ).attr( "rel", "stylesheet" ); + }); } // For ruling out shadows via css -if ( !$.support.boxShadow ){ +if ( !$.support.boxShadow ) { $( "html" ).addClass( "ui-mobile-nosupport-boxshadow" ); }