Skip to content

Commit af0e1f5

Browse files
committed
whitepasce in nav
1 parent 884bfde commit af0e1f5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

js/jquery.mobile.navigation.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@
237237
//urlHistory is purely here to make guesses at whether the back or forward button was clicked
238238
//and provide an appropriate transition
239239
urlHistory = {
240-
// Array of pages that are visited during a single page load.
240+
// Array of pages that are visited during a single page load.
241241
// Each has a url and optional transition, title, and pageUrl (which represents the file path, in cases where URL is obscured, such as dialogs)
242242
stack: [],
243243

@@ -616,18 +616,18 @@
616616
}
617617

618618
if ( settings.showLoadMsg ) {
619-
619+
620620
// This configurable timeout allows cached pages a brief delay to load without showing a message
621621
var loadMsgDelay = setTimeout(function(){
622622
$.mobile.showPageLoadingMsg();
623623
}, settings.loadMsgDelay ),
624-
624+
625625
// Shared logic for clearing timeout and removing message.
626626
hideMsg = function(){
627-
627+
628628
// Stop message show timer
629629
clearTimeout( loadMsgDelay );
630-
630+
631631
// Hide loading message
632632
$.mobile.hidePageLoadingMsg();
633633
};
@@ -745,7 +745,7 @@
745745

746746
// Remove loading message.
747747
if ( settings.showLoadMsg ) {
748-
748+
749749
// Remove loading message.
750750
hideMsg();
751751

@@ -1216,7 +1216,7 @@
12161216
urlHistory.directHashChange({ currentUrl: to, isBack: setTo, isForward: setTo });
12171217
}
12181218
}
1219-
1219+
12201220
//if to is defined, load it
12211221
if ( to ) {
12221222
to = ( typeof to === "string" && !path.isPath( to ) ) ? ( '#' + to ) : to;

0 commit comments

Comments
 (0)