-
Notifications
You must be signed in to change notification settings - Fork 2.4k
1.3 Release Notes
Add notes here...
Rounded corner class changes - In 1.3, we've changed the way rounded corners are applied across all widgets. In previous versions, we had fairly complex JS logic to dynamically apply corner classes to specific elements in a widget. For example, the first item in an inset listview would get the ui-corners-top class to round only the top left and right corners and a similar thing would happen for bottom corners. // Explain how the new JS works.
Theme CSS corner classes - removed the various corners classes for specific sides (ui-corner-top) but left the corner-all class. Part of the corner code simplification, saved ~1k gzipped from library. Changed all corner styling logic from JS to pure CSS with Gabriel http://jquerymobile.com/branches/css-corner-styling/index.html
- added option corners for: dialogs + (inset) collapsibles + (inset) listviews
- added option shadow for (inset) listviews
- we have to update the TR: corner classes have be removed from theme CSS
Changed controlgroup from a function into a widget
Listview data-filter-reveal - Option to start a filtered listview with all items hidden by default (local autocomplete) - demo at bottom of page: http://jquerymobile.com/test/docs/demos/listviews/listview-filter-autodividers.html
Listview - Made it possible to set data-theme on list dividers
Popup data-dismissable - Option to prevent popup from closing when you click out
Textinput - Added (basic theming) support for input type="file"
Select - Made optgroup themable in custom menus
RWD tables: http://jquerymobile.com/branches/tables/docs/tables/index.html
Dialog: new option: closeBtn (or data-close-btn in the DOM) has three values: "left", "right", and "none". See https://github.com/jquery/jquery-mobile/issues/3886. "left" means a close button will be added to the left edge of the header. "right" means such a button will be added to the right edge of the header. "none" means no button will be added. This latter option allows for the manual addition of buttons to the header which can act as custom close buttons (see https://github.com/jquery/jquery-mobile/issues/5117).
Navigate event and method
fixedToolbars: Created extension for browser specific workaround (#5260) https://github.com/jquery/jquery-mobile/pull/5260