Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

closure compiler doesn't compile hokan #4

Closed
k2s opened this issue Jun 20, 2014 · 0 comments
Closed

closure compiler doesn't compile hokan #4

k2s opened this issue Jun 20, 2014 · 0 comments

Comments

@k2s
Copy link

k2s commented Jun 20, 2014

https://code.google.com/p/closure-compiler/issues/detail?id=427

in idbQueryEngine.js:

cursor.continue();

has to be

cursor['continue']();

in IndexedDB.js:

var request = this.db.transaction([ this.name ], 'readwrite').objectStore(this.name).delete(id);

has to be

var request = this.db.transaction([ this.name ], 'readwrite').objectStore(this.name)['delete'](id);
@kitsonk kitsonk closed this as not planned Won't fix, can't repro, duplicate, stale Apr 24, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants