mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-10 09:21:02 +00:00
Merge pull request #1573 from marcoos/master
fix for issue 1530: Page title is changing when I use popup select menu (Dropdown). Thanks marcoos.
This commit is contained in:
commit
084bbbd839
1 changed files with 1 additions and 1 deletions
|
|
@ -453,7 +453,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
//if title element wasn't found, try the page div data attr too
|
//if title element wasn't found, try the page div data attr too
|
||||||
var newPageTitle = to.jqmData( "title" ) || to.find( ".ui-header .ui-title" ).text();
|
var newPageTitle = to.jqmData( "title" ) || to.find( ":jqmData(role='header') .ui-title" ).text();
|
||||||
if( !!newPageTitle && pageTitle === document.title ) {
|
if( !!newPageTitle && pageTitle === document.title ) {
|
||||||
pageTitle = newPageTitle;
|
pageTitle = newPageTitle;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue