mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-04 14:50:24 +00:00
fixed regression where first page visited was using a transition.
This commit is contained in:
parent
f4b785a9e7
commit
3f703ce1e8
1 changed files with 1 additions and 1 deletions
|
|
@ -246,7 +246,7 @@
|
|||
isFormRequest = false,
|
||||
duplicateCachedPage = null,
|
||||
back = (back !== undefined) ? back : ( urlStack.length > 1 && urlStack[ urlStack.length - 2 ].url === url ),
|
||||
transition = transition || $.mobile.defaultTransition;
|
||||
transition = (transition !== undefined) ? transition : $.mobile.defaultTransition;
|
||||
|
||||
if( $.type(to) === "object" && to.url ){
|
||||
url = to.url,
|
||||
|
|
|
|||
Loading…
Reference in a new issue