Add semi colon linting to Javascript

This commit is contained in:
Robin Ward
2015-09-15 17:08:50 -04:00
parent 24991c4016
commit 975edceff4
24 changed files with 37 additions and 40 deletions

View File

@ -56,6 +56,6 @@ componentTest('with an action', {
assert.ok(true, 'it fired the action');
});
click('a')
click('a');
}
});

View File

@ -24,7 +24,7 @@ componentTest('as a dropdown', {
assert.ok(!exists(".menu-panel.hidden"), "toggling visible makes it appear");
});
click('#outside-area')
click('#outside-area');
andThen(() => {
assert.ok(exists(".menu-panel.hidden"), "clicking the body hides the menu");
assert.equal(this.get('panelVisible'), false, 'it updates the bound variable');
@ -54,7 +54,7 @@ componentTest('as a slide-in', {
assert.ok(!exists(".menu-panel.hidden"), "toggling visible makes it appear");
});
click('#outside-area')
click('#outside-area');
andThen(() => {
assert.ok(exists(".menu-panel.hidden"), "clicking the body hides the menu");
assert.equal(this.get('panelVisible'), false, 'it updates the bound variable');