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'd like to be able to set all controls to use data-mini="true" by default, via either a $.mobile setting or an attribute/class on the div[role=page]. At minimum, when the attribute is put on a reasonable container (form or fieldset) I'd like it to apply to all controls within.
Also, it seems inconsistent that you can put it on a container like this:
<fieldset data-role="controlgroup" data-mini="true">
<input type="checkbox"> <!-- This will be mini-fied -->
</fieldset>
But not other containers:
<div data-role="fieldcontain" data-mini="true">
<input type="text"> <!-- this will be the normal size -->
</div>
The text was updated successfully, but these errors were encountered:
I'd like to be able to set all controls to use
data-mini="true"
by default, via either a$.mobile
setting or an attribute/class on thediv[role=page]
. At minimum, when the attribute is put on a reasonable container (form
orfieldset
) I'd like it to apply to all controls within.Also, it seems inconsistent that you can put it on a container like this:
But not other containers:
The text was updated successfully, but these errors were encountered: