Skip to content

Commit

Permalink
Fix indentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan Humphreys committed Aug 9, 2016
1 parent a1ba051 commit 2a4f61b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/Tribute.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,7 @@ class Tribute {
for (var i = 0; i < length; ++i) {
this._attach(el[i])
}
}
else {
} else {
this._attach(el)
}
}
Expand All @@ -145,8 +144,7 @@ class Tribute {
if (Tribute.inputTypes().indexOf(element.nodeName) === -1) {
if (element.contentEditable) {
element.contentEditable = true
}
else {
} else {
throw new Error('[Tribute] Cannot bind to ' + element.nodeName)
}
}
Expand Down

0 comments on commit 2a4f61b

Please sign in to comment.