You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.
I was trying to use the JQM-docs layout with two separate headers - one inside the content-primary section, the other one inside the content-secondary section.
This disables the fixedToolbars functionality for the header.
If I change the toolbarSelector inside the fixedToolbar function from
toolbarSelector = ".ui-header-fixed:first, ui-footer-fixed:not(.ui-footer-duplicate):last",
to
toolbarSelector = ".ui-header-fixed:first, .content-primary .ui-header-fixed, .content-secondary .ui-header-fixed, .ui-footer-fixed:not(.ui-footer-duplicate):last",
it works like a charm.
Maybe a worthwhile addition.
Regards, Frequent
The text was updated successfully, but these errors were encountered:
if I may add, I can think of plenty of uses for other fixed elements besides fixed/header footers, so a general .ui-element-fixed would be nice to have.
This already works, if I set var $ap = $('body'); instead of the current var $ap = ...~ ui-page-active; so here's to hoping you like this more general approach on fixing elements :-)
I was trying to use the JQM-docs layout with two separate headers - one inside the content-primary section, the other one inside the content-secondary section.
This disables the fixedToolbars functionality for the header.
If I change the toolbarSelector inside the fixedToolbar function from
toolbarSelector = ".ui-header-fixed:first, ui-footer-fixed:not(.ui-footer-duplicate):last",
to
toolbarSelector = ".ui-header-fixed:first, .content-primary .ui-header-fixed, .content-secondary .ui-header-fixed, .ui-footer-fixed:not(.ui-footer-duplicate):last",
it works like a charm.
Maybe a worthwhile addition.
Regards, Frequent
The text was updated successfully, but these errors were encountered: