Browse Source

Merge pull request #617 from pwolstenholme/patch-1

Show IE 8+ compatibility mode users a better error
pull/517/merge
Joe Germuska 11 years ago
parent
commit
9fbd0411e6
  1. 4
      source/js/VMM.Timeline.js

4
source/js/VMM.Timeline.js

@ -486,7 +486,7 @@ if(typeof VMM != 'undefined' && typeof VMM.Timeline == 'undefined') {
// IE7
if (ie7) {
ie7 = true;
VMM.fireEvent(global, config.events.messege, "Internet Explorer " + VMM.Browser.version + " is not supported by TimelineJS. Please update your browser to version 8 or higher.");
VMM.fireEvent(global, config.events.messege, "Internet Explorer " + VMM.Browser.version + " is not supported by TimelineJS. Please update your browser to version 8 or higher. If you are using a recent version of Internet Explorer you may need to disable compatibility mode in your browser.");
} else {
detachMessege();
@ -687,4 +687,4 @@ if(typeof VMM != 'undefined' && typeof VMM.Timeline == 'undefined') {
VMM.Timeline.Config = {};
};
};

Loading…
Cancel
Save