Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. var requestedBytes = 1024*1024*1024;
  2.  
  3. navigator.webkitPersistentStorage.requestQuota (
  4. requestedBytes, function(grantedBytes) {
  5. console.log('we were granted ', grantedBytes, 'bytes');
  6.  
  7. }, function(e) { console.log('Error', e); }
  8. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement