From aea0f99a97cb8e2fad98f28f0b531456fc790815 Mon Sep 17 00:00:00 2001 From: Calvin Tam Date: Fri, 31 Jan 2014 09:53:56 +1100 Subject: [PATCH] Toolbar: Spelling correction in persistent toolbar demos --- demos/toolbar-fixed-external/index.php | 4 ++-- demos/toolbar-fixed-persistent/index.php | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/demos/toolbar-fixed-external/index.php b/demos/toolbar-fixed-external/index.php index 8d0104f92a0..dad638df36a 100644 --- a/demos/toolbar-fixed-external/index.php +++ b/demos/toolbar-fixed-external/index.php @@ -45,9 +45,9 @@

Since external toolbars are outside the page they don't inherit a theme from the page. This means you always have to set a theme for them. You can use the data-theme attribute for this or set the theme option when you call the plugin: -

True persistant toolbars

+

True persistent toolbars

-

Because External toolbars are outside of the page they are not effected by transition and make truly persistant toolbars possible.

+

Because External toolbars are outside of the page they are not effected by transition and make truly persistent toolbars possible.

Persistant toolbar demo

diff --git a/demos/toolbar-fixed-persistent/index.php b/demos/toolbar-fixed-persistent/index.php index 9f253f5d878..9dad1a7a7ae 100644 --- a/demos/toolbar-fixed-persistent/index.php +++ b/demos/toolbar-fixed-persistent/index.php @@ -49,7 +49,7 @@

These pages are a demo of a persistent navbar in a fixed footer toolbar. Click on any of the links in the footer, and you'll see the page content transition. Both the persistent header and footer on these pages remain in place during the animation to a new HTML page.

-

With the new external toolbars no extra effort is required to now have persistant toolbars. Simply place them outside of the page container on each page they will be loaded on the first page and persist on subsequent pages. The toolbars still need to be placed on each page to account for refresh however they will be ignored if not within a page container.

+

With the new external toolbars no extra effort is required to now have persistent toolbars. Simply place them outside of the page container on each page they will be loaded on the first page and persist on subsequent pages. The toolbars still need to be placed on each page to account for refresh however they will be ignored if not within a page container.

Typically, the persistent toolbar technique will be combined with fixed positioning.

@@ -59,13 +59,13 @@
-

Improving page load with persistant toolbars

+

Improving page load with persistent toolbars

-

By combining this technique with a little bit of server side logic you can reduce the file size for each page load significantly by not sending anything except the actual page container back when the request is from ajax. this not only reduces file size but makes the actual processing of the page quicker also. To see an example of this technique see Ajax optimized persistant toolbars

+

By combining this technique with a little bit of server side logic you can reduce the file size for each page load significantly by not sending anything except the actual page container back when the request is from ajax. this not only reduces file size but makes the actual processing of the page quicker also. To see an example of this technique see Ajax optimized persistent toolbars

A note about transitions

-

By Removing the toolbars from the page container they are no longer part of the page transition which dramaticly improves the performance of complex 3D page transitions over the older style of persistant toolbars.

+

By Removing the toolbars from the page container they are no longer part of the page transition which dramaticly improves the performance of complex 3D page transitions over the older style of persistent toolbars.