mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-28 18:04:46 +00:00
Just compare the nodes directly to each other.
This commit is contained in:
parent
67174b8966
commit
573db6ab28
1 changed files with 1 additions and 1 deletions
|
|
@ -527,7 +527,7 @@
|
|||
}
|
||||
//there's no hash, the active page is not the start page, and it's not manually triggered hashchange
|
||||
// > probably backed out to the first page visited
|
||||
else if( $.mobile.activePage.length && !$startPage.is( $.mobile.activePage ) && !triggered ) {
|
||||
else if( $.mobile.activePage.length && $startPage[0] !== $.mobile.activePage[0] && !triggered ) {
|
||||
changePage( $startPage, transition, true );
|
||||
}
|
||||
else{
|
||||
|
|
|
|||
Loading…
Reference in a new issue