From 4ebfe456ae15d1e4f1614a7a07ce1fe9c992d2df Mon Sep 17 00:00:00 2001 From: Colin Marshall Date: Wed, 3 Feb 2016 22:34:41 -0700 Subject: [PATCH] Fixed js formatting, added missing module comments --- js/foundation.abide.js | 5 +++++ js/foundation.equalizer.js | 5 +++++ js/foundation.responsiveToggle.js | 2 +- js/foundation.toggler.js | 5 ++--- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/js/foundation.abide.js b/js/foundation.abide.js index e45c99ca9..a932ef514 100644 --- a/js/foundation.abide.js +++ b/js/foundation.abide.js @@ -1,5 +1,10 @@ 'use strict'; +/** + * Abide module. + * @module foundation.abide + */ + export default class Abide { /** * Creates a new instance of Abide. diff --git a/js/foundation.equalizer.js b/js/foundation.equalizer.js index 5f36adbef..58c4ad4ec 100644 --- a/js/foundation.equalizer.js +++ b/js/foundation.equalizer.js @@ -1,5 +1,10 @@ 'use strict'; +/** + * Equalizer module. + * @module foundation.equalizer + */ + export default class Equalizer { /** * Creates a new instance of Equalizer. diff --git a/js/foundation.responsiveToggle.js b/js/foundation.responsiveToggle.js index 22060134f..bf574e726 100644 --- a/js/foundation.responsiveToggle.js +++ b/js/foundation.responsiveToggle.js @@ -6,7 +6,7 @@ * @requires foundation.util.mediaQuery */ - export default class ResponsiveToggle { +export default class ResponsiveToggle { /** * Creates a new instance of Tab Bar. * @class diff --git a/js/foundation.toggler.js b/js/foundation.toggler.js index 553d8001a..3bdb61eac 100644 --- a/js/foundation.toggler.js +++ b/js/foundation.toggler.js @@ -1,11 +1,12 @@ 'use strict'; + /** * Toggler module. * @module foundation.toggler * @requires foundation.util.motion */ - export default class Toggler { +export default class Toggler { /** * Creates a new instance of Toggler. * @class @@ -24,8 +25,6 @@ Foundation.registerPlugin(this, 'Toggler'); } - - /** * Initializes the Toggler plugin by parsing the toggle class from data-toggler, or animation classes from data-animate. * @function -- 2.47.2