Skip to content

Instantly share code, notes, and snippets.

@vjnrv
Created June 22, 2010 21:11
Show Gist options
  • Save vjnrv/449094 to your computer and use it in GitHub Desktop.
Save vjnrv/449094 to your computer and use it in GitHub Desktop.
// Retorna o arquivo manifest
function getManifest()
{
var xhr = new XMLHttpRequest();
xhr.open('GET', './manifest.json', false);
xhr.send(null);
return JSON.parse(xhr.responseText);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment