ebidel / idb.filesystem.js

HTML5 Filesystem API polyfill using IndexedDB
https://www.npmjs.com/package/idb.filesystem.js
Other
488 stars 46 forks source link

IE10 compat #3

Closed paulirish closed 11 years ago

paulirish commented 12 years ago

I tried it on browserstack. Got an exception. typical IE. :trollface:

ebidel commented 12 years ago

Screenshot?

BenjaminDobler commented 11 years ago

I think it`s because defineSetters defineGetters is not supported in IE10. Could probably be replaced with Object.defineProperty(obj, 'property', { get: function() { return 'value'; }, set: function(value) { // set-logic } });

I`ll try this would be too cool to get this working in IE 10!

ebidel commented 11 years ago

Believe this is fixed now with all the PRs. Thanks again. Holler if it's not.