forked from webcss/angular-indexedDB
-
Notifications
You must be signed in to change notification settings - Fork 48
Open
Description
The same code in IE seems to take as huge amount of time when calling getAll() as compared to Chrome.
In Chrome this code runs in <1s, in IE, it takes about minute to reach the console line. Is there something I can do to speed this up?
var loadWhiteListNodeIds = function () {
$indexedDB.openStore('whiteListNodeIds',
function (table) {
return table.find(7672990).then(function (item) {
table.getAll().then(function (whitelistNodeIds) {
console.log('setting whiteListNodeIds');
$scope.whitelistNodeIds = whitelistNodeIds;
});
})["catch"](function (error) {
return getAllWhiteListNodesAndAddToDb('whiteListNodeIds');
});
});
};Metadata
Metadata
Assignees
Labels
No labels