diff options
author | Anike Arni <aarni@thoughtworks.com> | 2016-12-27 15:33:22 -0200 |
---|---|---|
committer | Anike Arni <aarni@thoughtworks.com> | 2016-12-27 15:33:22 -0200 |
commit | df7c34ec46cf4f11699a4a673d6bffe50a5b216e (patch) | |
tree | 53c62c7d79809ea0b69c46cbc404c4fcf26f7895 /web-ui | |
parent | cb4522fa47d5e46312d53a62654f58c4a53c8cc2 (diff) |
Fixes jshint by adding semicolon in index.js
Diffstat (limited to 'web-ui')
-rw-r--r-- | web-ui/app/js/index.js | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/web-ui/app/js/index.js b/web-ui/app/js/index.js index 081fe51c..690c086b 100644 --- a/web-ui/app/js/index.js +++ b/web-ui/app/js/index.js @@ -1,18 +1,18 @@ -import compose from 'flight/lib/compose' -import registry from 'flight/lib/registry' -import advice from 'flight/lib/advice' -import withLogging from 'flight/lib/logger' -import debug from 'flight/lib/debug' -import events from 'page/events' -import initializeDefault from 'page/default' -import 'js/monkey_patching/all' +import compose from 'flight/lib/compose'; +import registry from 'flight/lib/registry'; +import advice from 'flight/lib/advice'; +import withLogging from 'flight/lib/logger'; +import debug from 'flight/lib/debug'; +import events from 'page/events'; +import initializeDefault from 'page/default'; +import 'js/monkey_patching/all'; -window.Pixelated = window.Pixelated || {} -window.Pixelated.events = events +window.Pixelated = window.Pixelated || {}; +window.Pixelated.events = events; -compose.mixin(registry, [advice.withAdvice, withLogging]) +compose.mixin(registry, [advice.withAdvice, withLogging]); -debug.enable(true) -debug.events.logAll() +debug.enable(true); +debug.events.logAll(); -initializeDefault('') +initializeDefault(''); |