Noticed Chrome 30 wasn't working for Gems in the Deep, so recommending 31+ instead of 25+.

This commit is contained in:
Nick Winter 2015-04-28 14:49:10 -07:00
parent e11e8a8966
commit 1a1da2924f

View file

@ -23,7 +23,7 @@ module.exports = class HomeView extends RootView
if $.browser
majorVersion = $.browser.versionNumber
c.isOldBrowser = true if $.browser.mozilla && majorVersion < 25
c.isOldBrowser = true if $.browser.chrome && majorVersion < 25
c.isOldBrowser = true if $.browser.chrome && majorVersion < 31 # Noticed Gems in the Deep not loading with 30
c.isOldBrowser = true if $.browser.safari && majorVersion < 6 # 6 might have problems with Aether, or maybe just old minors of 6: https://errorception.com/projects/51a79585ee207206390002a2/errors/547a202e1ead63ba4e4ac9fd
else
console.warn 'no more jquery browser version...'