From 576f7b7bceec74b6373f75e159e97c815769eeb5 Mon Sep 17 00:00:00 2001 From: Neale Pickett Date: Fri, 24 Oct 2014 12:29:38 -0600 Subject: [PATCH] Remember previous settings --- app/manifest.json | 2 +- app/wirc.js | 27 ++++++++++++++++++++------- 2 files changed, 21 insertions(+), 8 deletions(-) diff --git a/app/manifest.json b/app/manifest.json index e29cd47..227be33 100644 --- a/app/manifest.json +++ b/app/manifest.json @@ -1,6 +1,6 @@ { "manifest_version": 2, - "version": "1.0.0", + "version": "1.0", "name": "__MSG_appName__", "short_name": "__MSG_appShortName__", diff --git a/app/wirc.js b/app/wirc.js index 8569e1e..031755c 100644 --- a/app/wirc.js +++ b/app/wirc.js @@ -158,6 +158,9 @@ function addMessage(txt) { addMessagePart(p, "raw", command + " " + args + " " + msg); break; } + while (forumElement.childNodes.length > 500) { + forumElement.removeChild(forumElement.firstChild) + } forumElement.appendChild(p); p.scrollIntoView(false); } @@ -181,12 +184,11 @@ function handleCommand(event) { var parts = txt.split(" "); connect(parts[1], parts[2], parts[3]); - return; + } else { + oReq.onload = reqListener; + oReq.open("POST", window.postURL, true); + oReq.send(new FormData(event.target)); } - - oReq.onload = reqListener; - oReq.open("POST", window.postURL, true); - oReq.send(new FormData(event.target)); event.target.reset(); @@ -198,12 +200,23 @@ function connect(url, server, authtok) { document.getElementById("server").value = server; document.getElementById("authtok").value = authtok; var pullURL = url + "?server=" + server + "&auth=" + authtok - var source = new EventSource(pullURL); - source.onmessage = newmsg; + + if (window.source != null) { + window.source.close(); + } + window.source = new EventSource(pullURL); + window.source.onmessage = newmsg; + + chrome.storage.sync.set({"url": url, "server": server, "authtok": authtok}); +} + +function restore(items) { + connect(items["url"], items["server"], items["authtok"]); } function init() { document.getElementById("command").onsubmit = handleCommand; + chrome.storage.sync.get(["url", "server", "authtok"], restore); } window.onload = init;