diff options
Diffstat (limited to 'public')
-rw-r--r-- | public/common/client.js | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/public/common/client.js b/public/common/client.js index 393eb0a..a11f712 100644 --- a/public/common/client.js +++ b/public/common/client.js @@ -569,10 +569,6 @@ function connect_play() { if (typeof on_reply === "function") on_reply(arg[0], arg[1]) break - - case "save": - window.localStorage[params.title_id + "/save"] = arg - break } } } @@ -743,14 +739,6 @@ function send_query(q, param) { send_message("query", [ q, param ]) } -function send_save() { - send_message("save") -} - -function send_restore() { - send_message("restore", window.localStorage[params.title_id + "/save"]) -} - /* REPLAY */ function init_replay() { |