From e78c161c63ddda0cfb32bc0e6a3b26e2765b06ee Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Sun, 17 Mar 2013 15:06:26 +0000 Subject: [PATCH] Correct comment --- plugins/tiddlywiki/tiddlyweb/tiddlyweb.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/tiddlywiki/tiddlyweb/tiddlyweb.js b/plugins/tiddlywiki/tiddlyweb/tiddlyweb.js index c165a63ca..bbaf474bb 100644 --- a/plugins/tiddlywiki/tiddlyweb/tiddlyweb.js +++ b/plugins/tiddlywiki/tiddlyweb/tiddlyweb.js @@ -82,7 +82,7 @@ var TiddlyWebSyncer = function(options) { this.taskTimerId = null; // Sync timer // Compute the host and recipe this.host = document.location.protocol + "//" + document.location.host + "/"; - this.recipe = undefined; // Filled in by getStatus() to be either "" or "recipes//" + this.recipe = undefined; // Filled in by getStatus() // Mark us as not logged in this.wiki.addTiddler({title: TiddlyWebSyncer.titleIsLoggedIn,text: "no"}); // Listen out for changes to tiddlers @@ -670,7 +670,6 @@ TiddlyWebSyncer.prototype.getCsrfToken = function() { csrf = match[1]; } return csrf; - }; // Only export anything on the browser