Guest User

Untitled

a guest
Jan 19th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. applicationCache.onchecking = function(){
  2. console.log("checking");
  3. }
  4. applicationCache.ondownloading = function(e){
  5. console.log("dowload");
  6. }
  7. applicationCache.onnoupdate = function(){
  8. console.log("noupdate");
  9. }
  10. applicationCache.onprogress = function(e){
  11. console.log("progress");
  12. }
  13. applicationCache.oncached = function(){
  14. console.log("cached");
  15. }
  16. applicationCache.onupdateready = function(){
  17. console.log("updateready");
  18. }
  19. applicationCache.onobsolete = function(){
  20. console.log("obsolete");
  21. }
  22. applicationCache.onerror = function(){
  23. console.log("error");
  24. }
Add Comment
Please, Sign In to add comment