mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-03-13 22:49:51 -04:00
Temporarily increased serialization limit for iOS
This commit is contained in:
parent
0bb11e2f36
commit
da2ca3ec63
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ window.serializeForIOS = serializeForIOS = (obj, depth=3) ->
|
|||
clone = {}
|
||||
keysHandled = 0
|
||||
for own key, value of obj
|
||||
continue if ++keysHandled > 20
|
||||
continue if ++keysHandled > 50
|
||||
if not value
|
||||
clone[key] = value
|
||||
else if value is window or value.firstElementChild or value.preventDefault
|
||||
|
|
Loading…
Reference in a new issue