mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-17 06:20:26 +00:00
fix for issue 1530: Page title is changing when I use popup select menu ( Dropdown)
This commit is contained in:
parent
131cb2423f
commit
50ee33a84f
1 changed files with 1 additions and 1 deletions
|
|
@ -458,7 +458,7 @@
|
|||
}
|
||||
|
||||
//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 ) {
|
||||
pageTitle = newPageTitle;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue