ethstats-server/web-app/.meteor/local/build/programs/web.browser/packages/reload.js.map

2 lines
9.7 KiB
Plaintext
Raw Normal View History

2015-08-14 19:22:53 +02:00
)]}'
{"version":3,"sources":["reload/reload.js","reload/deprecated.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,G;AACA,kE;AACA,gE;AACA,E;AACA,sD;AACA,E;AACA,mE;AACA,uE;AACA,qE;AACA,gE;AACA,sE;AACA,mE;AACA,4C;AACA,uC;AACA,gE;AACA,4D;AACA,E;AACA,qE;AACA,qE;AACA,wE;AACA,sE;AACA,oC;AACA,E;AACA,qE;AACA,uE;AACA,2C;AACA,G;;AAEA,kE;AACA,kE;AACA,qD;AACA,4C;;AAEA,Y;;AAEA,+B;;AAEA,kB;AACA,+B;AACA,a;;AAEA,8E;AACA,8B;AACA,K;AACA,wE;AACA,wB;AACA,I;AACA,6E;AACA,I;AACA,+E;AACA,uE;AACA,sC;AACA,6C;;AAEA,iC;AACA,2B;AACA,iD;AACA,+C;AACA,U;AACA,uC;AACA,8B;AACA,G;AACA,Y;AACA,gF;AACA,4B;AACA,C;;AAEA,qB;AACA,+B;AACA,oE;AACA,E;;AAEA,yB;AACA,+B;AACA,0C;AACA,Q;AACA,mE;AACA,2B;AACA,uD;AACA,C;;AAEA,+B;AACA,oB;AACA,K;AACA,oC;AACA,uC;AACA,uD;AACA,oB;AACA,G;AACA,e;AACA,yD;AACA,C;;AAEA,+D;AACA,6C;AACA,6B;AACA,C;;;AAGA,mB;;AAEA,kC;;AAEA,wE;AACA,oE;AACA,oE;AACA,mE;AACA,oE;AACA,mE;AACA,+D;AACA,oE;AACA,2D;AACA,iE;AACA,mE;AACA,oE;AACA,6E;AACA,mE;AACA,mE;AACA,qE;AACA,mC;AACA,E;AACA,+C;AACA,kB;AACA,mD;AACA,oB;AACA,qB;AACA,G;AACA,mD;AACA,E;;AAEA,yC;AACA,iE;AACA,E;AACA,yC;AACA,wB;AACA,E;;AAEA,iD;AACA,mD;AACA,0C;AACA,0B;;AAEA,yB;AACA,qC;AACA,sB;AACA,4B;AACA,8B;AACA,gD;AACA,mB;AACA,uB;AACA,oC;AACA,wC;AACA,I;AACA,6C;AACA,yB;AACA,M;AACA,gB;AACA,E;;AAEA,e;AACA,uE;AACA,uE;AACA,iD;AACA,6D;AACA,mB;AACA,wD;AACA,6B;AACA,oC;;AAEA,O;AACA,iC;AACA,+B;AACA,uC;AACA,O;AACA,iB;AACA,0E;AACA,c;AACA,G;;AAEA,2B;AACA,S;AACA,iD;AACA,mB;AACA,wE;AACA,+E;AACA,K;AACA,U;AACA,0F;AACA,G;;AAEA,c;AACA,E;;AAEA,iD;AACA,kD;AACA,6C;AACA,iB;AACA,O;AACA,Q;AACA,a;AACA,kC;AACA,G;AACA,E;;AAEA,kE;AACA,iE;AACA,iE;AACA,mE;AACA,wB;AACA,E;AACA,sB;AACA,qC;AACA,0B;;AAEA,gB;AACA,W;AACA,mB;;AAEA,qD;AACA,8C;AACA,iE;AACA,+B;AACA,K;AACA,Q;;AAEA,c;AACA,E;;;;;;;;;;;;;;;;;;;AClOA,8E;AACA,sD;AACA,wB;AACA,kB;AACA,+B;AACA,uC;AACA,wB;AACA,E","file":"/packages/reload.js","sourcesContent":["/**\n * This code does _NOT_ support hot (session-restoring) reloads on\n * IE6,7. It only works on browsers with sessionStorage support.\n *\n * There are a couple approaches to add IE6,7 support:\n *\n * - use IE's \"userData\" mechanism in combination with window.name.\n * This mostly works, however the problem is that it can not get to the\n * data until after DOMReady. This is a problem for us since this API\n * relies on the data being ready before API users run. We could\n * refactor using Meteor.startup in all API users, but that might slow\n * page loads as we couldn't start the stream until after DOMReady.\n * Here are some resources on this approach:\n * https://github.com/hugeinc/USTORE.js\n * http://thudjs.tumblr.com/post/419577524/localstorage-userdata\n * http://www.javascriptkit.com/javatutors/domstorage2.shtml\n *\n * - POST the data to the server, and have the server send it back on\n * page load. This is nice because it sidesteps all the local storage\n * compatibility issues, however it is kinda tricky. We can use a unique\n * token in the URL, then get rid of it with HTML5 pushstate, but that\n * only works on pushstate browsers.\n *\n * This will all need to be reworked entirely when we add server-side\n * HTML rendering. In that case, the server will need to have access to\n * the client's session to render properly.\n */\n\n// XXX when making this API public, also expose a flag for the app\n// developer to know whether a hot code push is happening. This is\n// useful for apps using `window.onbeforeunload`. See\n// https://github.com/meteor/meteor/pull/657\n\nReload = {};\n\nvar KEY_NAME = 'Meteor_Reload';\n\nvar old_data = {};\n// read in old data at startup.\nvar old_json;\n\n// This logic for sessionStorage detection is based on browserstate/history.js\nvar safeSessionStorage = null;\ntry {\n // This throws a SecurityError on Chrome if cookies & localStorage are\n // explicitly disabled\n //\n // On Firefox with dom.storage.enabled set to false, sessionStorage is null\n //\n // We can't even do (typeof sessionStorage) on Chrome, it throws. So we rely\n // on the throw if sessionStorage == null; the alternative is browser\n // detection, but this seems better.\n safeSessionStorage =