mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-27 17:45:40 -05:00
Noticed Chrome 30 wasn't working for Gems in the Deep, so recommending 31+ instead of 25+.
This commit is contained in:
parent
e11e8a8966
commit
1a1da2924f
1 changed files with 1 additions and 1 deletions
|
@ -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...'
|
||||
|
|
Loading…
Reference in a new issue