diff options
| author | Giovane <giovaneliberato@gmail.com> | 2015-09-14 15:59:22 -0300 | 
|---|---|---|
| committer | Giovane <giovaneliberato@gmail.com> | 2015-09-14 15:59:22 -0300 | 
| commit | b952474c48287a44b376f0f4bcba5e74224ce188 (patch) | |
| tree | beedcda7bee50689c4ef7bc085e905a3d0f9ccda /web-ui/app/js/page | |
| parent | f594529222d7da7c4d825841a9c501a57ba90e40 (diff) | |
#442 Fix jshint
Diffstat (limited to 'web-ui/app/js/page')
| -rw-r--r-- | web-ui/app/js/page/default.js | 2 | ||||
| -rw-r--r-- | web-ui/app/js/page/feedback.js | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/web-ui/app/js/page/default.js b/web-ui/app/js/page/default.js index a4c545a1..0283d596 100644 --- a/web-ui/app/js/page/default.js +++ b/web-ui/app/js/page/default.js @@ -108,7 +108,7 @@ define(        logout.attachTo('#logout');        logoutShortcut.attachTo('#logout-shortcut'); -      feedback.attachTo("#feedback"); +      feedback.attachTo('#feedback');      }      return initialize; diff --git a/web-ui/app/js/page/feedback.js b/web-ui/app/js/page/feedback.js index 48747280..2ced9fee 100644 --- a/web-ui/app/js/page/feedback.js +++ b/web-ui/app/js/page/feedback.js @@ -26,7 +26,7 @@ define(['flight/lib/component', 'views/templates', 'page/events', 'features'],      this.onClick = function() {        this.trigger(document, events.ui.feedback.open); -    } +    };      this.after('initialize', function () {        if (features.isEnabled('feedback')) { | 
