Skip to content
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.

Commit

Permalink
wrapped in parens for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
scottjehl committed Aug 3, 2011
1 parent 4c01267 commit a48128f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/jquery.mobile.support.js
Expand Up @@ -84,7 +84,7 @@ fakeBody.remove();
// 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.
// We recommend only using these detection methods when all other more reliable/forward-looking approaches are not possible
var nokiaLTE7_3 = function(){
var nokiaLTE7_3 = (function(){

var ua = window.navigator.userAgent;

Expand All @@ -93,7 +93,7 @@ var nokiaLTE7_3 = function(){
&& ( 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
Expand Down

0 comments on commit a48128f

Please sign in to comment.