Has there been any discussion on integrating offline storage into the page call scheme.
I.E.
This is a proof of concept I've been working on.
1. When the mobile page loads, an ajax request goes out to pull in the data for many other pages. These are in turn loaded into the client's offline database (indexed by the name of the page).
2. When a link is clicked the page is queried in this order.
A. Is the page already loaded into the current html page, (already supported)
B. If not, can the page be queried out of the offline storage and then included into the DOM, (new)
C. If not, use AJAX to bring the page into the DOM. (already supported)