turuslan / HackTimer

MIT License
491 stars 93 forks source link

Fix IE10 #18

Closed stalingraddd closed 8 years ago

stalingraddd commented 8 years ago

Please add the following code before try/catch block which creates new Blob. In IE10 there is a problem when creating Blob (security error)

if(!/MSIE 10/i.test(navigator.userAgent)) { try { var blob = new Blob (["\ var fakeIdToId = {};\ ...

} catch (error) { /* Blob is not supported, use external script instead */ } }