mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-03-23 19:32:03 -04: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
|
if $.browser
|
||||||
majorVersion = $.browser.versionNumber
|
majorVersion = $.browser.versionNumber
|
||||||
c.isOldBrowser = true if $.browser.mozilla && majorVersion < 25
|
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
|
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
|
else
|
||||||
console.warn 'no more jquery browser version...'
|
console.warn 'no more jquery browser version...'
|
||||||
|
|
Loading…
Add table
Reference in a new issue