From 26614bf2d59186149b335c49110e5c5dd68f5e83 Mon Sep 17 00:00:00 2001 From: John McLear Date: Wed, 23 May 2012 01:01:50 +0200 Subject: [PATCH] You can't use $ if no jQuery is available.. Apologies for so much spam on this issue, this finally resolves #594 --- src/node/handler/ImportHandler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node/handler/ImportHandler.js b/src/node/handler/ImportHandler.js index 1454a25d..788706ce 100644 --- a/src/node/handler/ImportHandler.js +++ b/src/node/handler/ImportHandler.js @@ -196,6 +196,6 @@ exports.doImport = function(req, res, padId) ERR(err); //close the connection - res.send("", 200); + res.send("", 200); }); }