Fix Indentation?

This commit is contained in:
Nicholas Hubbard 2017-09-21 20:12:25 -04:00
parent 7f2e643e62
commit 2bf18d8bda
3 changed files with 14 additions and 16 deletions

View File

@ -58,9 +58,7 @@ Module.register("updatenotification", {
wrapper.appendChild(message); wrapper.appendChild(message);
var subtext = document.createElement("div"); var subtext = document.createElement("div");
subtext.innerHTML = this.translate("UPDATE_INFO") subtext.innerHTML = this.translate("UPDATE_INFO").replace("COMMIT_COUNT", this.status.behind + " " + ((this.status.behind == 1)? "commit" : "commits")).replace("BRANCH_NAME", this.status.current);
.replace("COMMIT_COUNT", this.status.behind + " " + ((this.status.behind == 1)? "commit" : "commits"))
.replace("BRANCH_NAME", this.status.current);
subtext.className = "xsmall dimmed"; subtext.className = "xsmall dimmed";
wrapper.appendChild(subtext); wrapper.appendChild(subtext);
} }

View File

@ -48,7 +48,7 @@ try {
// In case the there errors show messages and // In case the there errors show messages and
// return // return
console.info(Utils.colors.info("Checking file... ", configFileName)); console.info(Utils.colors.info("Checking file... ", configFileName));
// I'm not sure if all ever is utf-8 // I'm not sure if all ever is utf-8
fs.readFile(configFileName, "utf-8", function(err, data) { fs.readFile(configFileName, "utf-8", function(err, data) {
if (err) {throw err;} if (err) {throw err;}
v.JSHINT(data); // Parser by jshint v.JSHINT(data); // Parser by jshint