diff --git a/Makefile b/Makefile index fae74f95..83a42e90 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,7 @@ JQUERY = $(shell grep Library js/jquery.js | sed s'/ \* jQuery JavaScript Librar # The directory to create the zipped files in and also serves as the filenames DIR = jquery.mobile-${VER} +STRUCTUREFILE = jquery.mobile.structure-${VER} nightly: DIR = jquery.mobile # The output folder for the finished files @@ -33,8 +34,8 @@ JS = ${DIR}.js MIN = ${DIR}.min.js CSS = ${DIR}.css CSSMIN = ${DIR}.min.css -CSSSTRUCTURE = ${DIR}.structure.css -CSSSTRUCTUREMIN = ${DIR}.structure.min.css +CSSSTRUCTURE = ${STRUCTUREFILE}.css +CSSSTRUCTUREMIN = ${STRUCTUREFILE}.min.css CSSTHEME = default # The files to include when compiling the JS files diff --git a/docs/api/methods.html b/docs/api/methods.html index 86d3532b..e81b4ee0 100755 --- a/docs/api/methods.html +++ b/docs/api/methods.html @@ -191,6 +191,47 @@ $.mobile.hidePageLoadingMsg(); +
$.mobile.fixedToolbars.show (method)· Argumentsimmediately (boolean, optional) If true, any fixed header or footer for the current active page is displayed immediately within the viewport. If false or unspecified, the fixed header/footer will fade-in after a 100 millisecond delay. Note that other events such as a document resize or scroll event can result in an additional delay before the start of the header/footer display animation.
+
+// Show fixed header/footer with a fade animation.
+$.mobile.fixedToolbars.show();
+
+// Show fixed header/footer immediately.
+$.mobile.fixedToolbars.show(true);
+
+
+
+ $.mobile.fixedToolbars.hide (method)· Argumentsimmediately (boolean, optional) If true, any fixed header or footer for the current active page is immediately placed inline (back in flow) with the page content, which means it will scroll along with the content and will only be visible when viewing the top or bottom of the page within the viewport. If false or unspecified, the fixed header/footer will fade-out after a 100 millisecond delay. Note that other events such as a document resize or scroll event can result in the header/footer being immediately hidden.
+
+// Hide fixed header/footer with a fade animation.
+$.mobile.fixedToolbars.hide();
+
+// Hide fixed header/footer immediately.
+$.mobile.fixedToolbars.hide(true);
+
+
+
+ $.mobile.path.parseUrl (method)