Merge pull request #585 from roramirez/extra-spaces

fix tabs, remove extra spaces and lines.
This commit is contained in:
Michael Teeuw
2016-12-31 19:12:24 +01:00
committed by GitHub
21 changed files with 82 additions and 83 deletions

View File

@@ -41,7 +41,7 @@ var Server = function(config, callback) {
app.get("/version", function(req,res) {
res.send(global.version);
});
app.get("/", function(req, res) {
var html = fs.readFileSync(path.resolve(global.root_path + "/index.html"), {encoding: "utf8"});
html = html.replace("#VERSION#", global.version);