mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 23:58:02 -05:00
Fix console.warning bug that prevents page from loading
This commit is contained in:
parent
f762d95ab8
commit
5aa1afbf7a
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ module.exports.load = (key) ->
|
|||
value = JSON.parse(s)
|
||||
return value
|
||||
catch SyntaxError
|
||||
console.warning('error loading from storage', key)
|
||||
console.warn('error loading from storage', key)
|
||||
return null
|
||||
|
||||
module.exports.save = (key, value) ->
|
||||
|
|
Loading…
Reference in a new issue