html5-audio-read-along icon indicating copy to clipboard operation
html5-audio-read-along copied to clipboard

classList not supported in ie9 and below

Open GordanBlake opened this issue 12 years ago • 0 comments

on line 60 in main.js you could use: document.body.className += 'initialized';

instead of: document.body.classList.add('initialized');

that will work on every other browser too.

It still won't make the app work on ie9 but it is a step forward.

Same must be done to the other classList calls on read-along.js.

PS: .dataset is unsupported too

GordanBlake avatar Dec 07 '12 15:12 GordanBlake