Skip to content
This repository was archived by the owner on Oct 8, 2021. It is now read-only.

Demos: persistent toolbar active state fix #7584

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion demos/toolbar-fixed-persistent/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
$( "[data-role='header'], [data-role='footer']" ).toolbar();
});
// Update the contents of the toolbars
$( document ).on( "pagecontainershow", function() {
$( document ).on( "pagecontainerchange", function() {
// Each of the four pages in this demo has a data-title attribute
// which value is equal to the text of the nav button
// For example, on first page: <div data-role="page" data-title="Info">
Expand Down
4 changes: 2 additions & 2 deletions demos/toolbar-fixed-persistent/page-b.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
$( "[data-role='header'], [data-role='footer']" ).toolbar();
});
// Update the contents of the toolbars
$( document ).on( "pageshow", "[data-role='page']", function() {
$( document ).on( "pagecontainerchange", function() {
// Each of the four pages in this demo has a data-title attribute
// which value is equal to the text of the nav button
// For example, on first page: <div data-role="page" data-title="Info">
var current = $( this ).jqmData( "title" );
var current = $( ".ui-page-active" ).jqmData( "title" );
// Change the heading
$( "[data-role='header'] h1" ).text( current );
// Remove active class from nav buttons
Expand Down
4 changes: 2 additions & 2 deletions demos/toolbar-fixed-persistent/page-c.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
$( "[data-role='header'], [data-role='footer']" ).toolbar();
});
// Update the contents of the toolbars
$( document ).on( "pageshow", "[data-role='page']", function() {
$( document ).on( "pagecontainerchange", function() {
// Each of the four pages in this demo has a data-title attribute
// which value is equal to the text of the nav button
// For example, on first page: <div data-role="page" data-title="Info">
var current = $( this ).jqmData( "title" );
var current = $( ".ui-page-active" ).jqmData( "title" );
// Change the heading
$( "[data-role='header'] h1" ).text( current );
// Remove active class from nav buttons
Expand Down
4 changes: 2 additions & 2 deletions demos/toolbar-fixed-persistent/page-d.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
$( "[data-role='header'], [data-role='footer']" ).toolbar();
});
// Update the contents of the toolbars
$( document ).on( "pageshow", "[data-role='page']", function() {
$( document ).on( "pagecontainerchange", function() {
// Each of the four pages in this demo has a data-title attribute
// which value is equal to the text of the nav button
// For example, on first page: <div data-role="page" data-title="Info">
var current = $( this ).jqmData( "title" );
var current = $( ".ui-page-active" ).jqmData( "title" );
// Change the heading
$( "[data-role='header'] h1" ).text( current );
// Remove active class from nav buttons
Expand Down