Bug 1301287 - Password manager: enable eslint space-infix-ops rule. r=johannh

.js files were fixed automatically with --fix

MozReview-Commit-ID: wzRpQhqEH7
This commit is contained in:
Matthew Noorenberghe
2016-09-07 21:41:15 -07:00
parent fa2df6f844
commit 345002bded
10 changed files with 70 additions and 67 deletions

View File

@@ -162,7 +162,7 @@ let signonsTreeView = {
switch (column.id) {
case "siteCol":
return signon.httpRealm ?
(signon.hostname + " (" + signon.httpRealm + ")"):
(signon.hostname + " (" + signon.httpRealm + ")") :
signon.hostname;
case "userCol":
return signon.username || "";
@@ -383,7 +383,7 @@ function DeleteSignon() {
// update selection and/or buttons
if (table.length) {
// update selection
let nextSelection = (selections[0] < table.length) ? selections[0] : table.length-1;
let nextSelection = (selections[0] < table.length) ? selections[0] : table.length - 1;
tree.view.selection.select(nextSelection);
tree.treeBoxObject.ensureRowIsVisible(nextSelection);
} else {