diff options
| author | Ben Beltran <ben@nsovocal.com> | 2017-08-30 00:26:01 -0500 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2017-08-30 00:26:01 -0500 |
| commit | c6425032e13c139bedd0546119f6ed1c93365822 (patch) | |
| tree | e4c02a7f4d9c650dff91c778eacc0ab80b8aee73 /lib/sorting_hat.js | |
| parent | 11400882a21f3152c586f7f6688664577a190949 (diff) | |
Add jsdoc, fix linter
Diffstat (limited to 'lib/sorting_hat.js')
| -rw-r--r-- | lib/sorting_hat.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/sorting_hat.js b/lib/sorting_hat.js index 4534a9f..2568b75 100644 --- a/lib/sorting_hat.js +++ b/lib/sorting_hat.js @@ -7,6 +7,12 @@ import StatusComponent from './components/status'; const internals = {}; +/** + * The main vue application, it is composed by the other components, no real + * logic otherwise + * + * @class SortingHat + */ internals.SortingHat = { start() { @@ -21,6 +27,7 @@ internals.SortingHat = { } }; +// Instantiates the app internals.run = function () { |