##New volunteer: Alex Kessinger, developer at Mixed Media Labs and their jQM/native hybrid PicPlz app, and speaker at last jQuery Conf. Can’t be on the call but will check in after.
###Navigation re-write status update and planning
URL handling:
- in-progress, test written, code changes this week by Kin
Extensibility hooks: need to document on wiki page
- Steven Black will start a wiki page with suggesitons
Caching: a simple "don't cache" flag per page
- A new data-cache attribute on the page div to tell framework to re-load it if shown again, default is “true” (re-use the page) but you can set data-cache="false" to tell the framework to re-load ever time it’s viewed
- $( "[data-role='page'][data-cache='false']" ).live( "pagehide", function(){ $(this).remove(); });
- Issue: https://github.com/jquery/jquery-mobile/issues/1554
Memory management: how to keep the DOM from getting too big?
- A new global configuration option to set the max number of pages to keep in the DOM at once. Once that max is hit, we run a a document-wide $("selector").remove() at the appropriate juncture in every changePage invocation (post Ajax success) that finds all pages that are data-cache="false" or oldest in the stack and delete them. We’ll need to check for alreadyLocalPage = ("[data-url='...']:not([data-cache='false']")
- Default to a sensible number like 15-20 pages but this can be overridden to any number more than 2 (to allow for transitions) or turned off completely
- Issue: https://github.com/jquery/jquery-mobile/issues/1555
Focus: can we handle this better?
- we need to have focus brought to the top of the current page on transition for accessibility and keyboard/focus-based navigation
- Scott Jehl will create a wiki page with suggestions
Transitions: how to smooth out, eliminate blinking
- Kin will tackle this after URLs
https://github.com/jquery/jquery-mobile/wiki/Refactor:-navigation-paths
https://github.com/jquery/jquery-mobile/wiki/Refactor:-navigation.js-A4.1-structure
https://github.com/jquery/jquery-mobile/wiki/Refactor:-Transition-dependencies
https://github.com/jquery/jquery-mobile/wiki/Refactor:-changepage
###Radiobuttons can't be selected once they are selected, then de-selected
- Bender has been looking at this, jQuery core 1.6 RC issue?
- https://github.com/jquery/jquery-mobile/issues/1532#comment_1092878
###Opera Mini Page ScrollTo issues - blank & cut off pages
- Who wants to tackle this?
- https://github.com/jquery/jquery-mobile/issues/1276
###Blackberry 5 support - A or C grade TBD based on performance.
- Scott is going to look at this soon
- https://github.com/jquery/jquery-mobile/issues/490
###Checkbox array support
##PULL REQUESTS
###listview.filter / data-filter performance optimization
###Decoupling Navbar State from Button "active" State
###Images with full URL broken in FF
- https://github.com/jquery/jquery-mobile/issues/1551
- https://github.com/jquery/jquery-mobile/pull/1552
###Theme inheritance in dialogs
###Update functional tests: bind click event to objects
###Dynamically insert thumbnail item at 0-index position doesn't update all style after listview refresh
###Several patches - Faster data filter / control what is filtered + Load dialog content from other base URL
###Patch for issue #1024 (Duplicate pages created in DOM)