I just created a web app available offline with the cache manifest etc. It works pretty well but I want to access to some pictures that are NOT mentioned in the cache manifest and they simply don't appear when I'm online.
Moreover, is there any simple way to load a default image instead when the app is offline?
Thanks in advance!
EDIT: the path of these pictures is dynamically loaded from a separate web service and saved in the local storage.
RE-EDIT:
OK I found the solution:
just add the following lines to the cache manifest:
NETWORK:
*
That will allow the web app to access every elements that are not in the CACHE: section of the manifest file. Actually the access is blocked if there's no NETWORK: section.