Here is my manifest :
CACHE MANIFEST
CACHE:
//code.jquery.com/jquery-2.0.3.min.js
NETWORK:
*
My index.html
which defines that manifest (<html manifest="app.manifest>
) is always stored as "Master
" even with the NETWORK
wildcard part of my manifest.
The problem is that my MASTER index.html
is stored in the cache... and won't be refreshed if it changes on the server side if the manifest file is not updated.
I've seen multiple not really beautiful solutions to that problem (like the iframe solution), so my question is : is there a clean HTML 5 way to do this ?