1
0
Fork 0
mirror of https://github.com/futurepress/epub.js.git synced 2025-10-04 15:09:16 +02:00

remove any uses of offsetLeft, cleaned up storage

This commit is contained in:
Fred Chasen 2013-03-27 15:56:11 -07:00
parent 7f41f00775
commit 5d7a15eabd
14 changed files with 102 additions and 72 deletions

View file

@ -3,10 +3,11 @@ FP.store = FP.store || {};
FP.store.ram = function() {
var _store = {},
_blobs = {},
_queue = new FP.Queue(loader, 6);
_queue = new FP.Queue(loader, 6),
_URL = window.URL;
//-- max of 6 concurrent requests: http://www.browserscope.org/?category=network
function loader(msg, callback){
var e = {"data":null},
fromCache = check(msg);
@ -94,7 +95,7 @@ FP.store.ram = function() {
return _blobs[path];
}
url = this._URL.createObjectURL(file);
url = _URL.createObjectURL(file);
//-- need to revokeObjectURL previous urls, but only when cleaning cache
// this.createdURLs.forEach(function(url){