Revert "Fix Indentation?"

This reverts commit 2bf18d8bdab364636b2589a981c7e7fb395bc669.
This commit is contained in:
Nicholas Hubbard 2017-09-30 19:44:54 -04:00
parent 837e275bfd
commit cd129fb055
3 changed files with 16 additions and 14 deletions

View File

@ -58,7 +58,9 @@ 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").replace("COMMIT_COUNT", this.status.behind + " " + ((this.status.behind == 1)? "commit" : "commits")).replace("BRANCH_NAME", this.status.current); subtext.innerHTML = this.translate("UPDATE_INFO")
.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);
} }