Skip to content

Instantly share code, notes, and snippets.

@certator
Created November 29, 2012 16:45
Show Gist options
  • Save certator/4170267 to your computer and use it in GitHub Desktop.
Save certator/4170267 to your computer and use it in GitHub Desktop.
lastplayer bug
obj = "The Wretched (трейлер \"Космополис\")"
j = $.toJSON(obj) // делаем json
e = eval("(" + j + ")") // проверка, все хорошо
sendReq({
method: "saveplaylist2",
data: j
}, function (a) {})
sendReq({
method: "loadplaylist2"
},
function (d) { j = d; })
console.log(j)
e = eval("(" + j + ")") // проверка, ошибка
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment