From c6425032e13c139bedd0546119f6ed1c93365822 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Wed, 30 Aug 2017 00:26:01 -0500 Subject: Add jsdoc, fix linter --- lib/sorting_hat.js | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'lib/sorting_hat.js') 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 () { -- cgit