Revision 17715063
Von Sven Schöling vor mehr als 3 Jahren hinzugefügt
js/kivi.FileDB.js | ||
---|---|---|
98 | 98 |
}; |
99 | 99 |
|
100 | 100 |
ns.open_ro_store = function(callback) { |
101 |
callback(ns.open_store()); |
|
101 |
if (db && db_version == db.version) { |
|
102 |
callback(ns.open_store("readonly")); |
|
103 |
} else { |
|
104 |
request.aftersuccess.push(() => callback(ns.open_store("readonly"))); |
|
105 |
} |
|
102 | 106 |
}; |
103 | 107 |
|
104 | 108 |
ns.open_store = function(mode = "readonly") { |
Auch abrufbar als: Unified diff
FileDB: db.open_ro_store jetzt auch mit asynchroner db