handler/ImportHandler: use jshint

This commit is contained in:
booo 2011-12-22 12:28:25 +01:00
parent da7098168e
commit 8e42192f2f

View file

@ -28,8 +28,10 @@ var formidable = require('formidable');
var os = require("os");
//load abiword only if its enabled
if(settings.abiword != null)
if(settings.abiword)
{
var abiword = require("../utils/Abiword");
}
var tempDirectory = "/tmp/";
@ -188,4 +190,4 @@ exports.doImport = function(req, res, padId)
//close the connection
res.send("ok");
});
}
};