summaryrefslogtreecommitdiff
path: root/web-ui/app/js/mixins/with_mail_tagging.js
diff options
context:
space:
mode:
authorBruno Wagner <bwagner@thoughtworks.com>2014-10-07 15:01:42 +0200
committerBruno Wagner <bwagner@thoughtworks.com>2014-10-07 15:01:54 +0200
commit6299531f4c8f7daa1b4afab45d0439f635b03982 (patch)
tree92b2876e732731e5219e50ef7719c72ec2cb478a /web-ui/app/js/mixins/with_mail_tagging.js
parent88abefd3e62fb65a08dde62a7d7e4ce1fa22f563 (diff)
Fixed jshint errors
Diffstat (limited to 'web-ui/app/js/mixins/with_mail_tagging.js')
-rw-r--r--web-ui/app/js/mixins/with_mail_tagging.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/web-ui/app/js/mixins/with_mail_tagging.js b/web-ui/app/js/mixins/with_mail_tagging.js
index 6ea047ed..f5bd7840 100644
--- a/web-ui/app/js/mixins/with_mail_tagging.js
+++ b/web-ui/app/js/mixins/with_mail_tagging.js
@@ -15,6 +15,9 @@
* along with Pixelated. If not, see <http://www.gnu.org/licenses/>.
*/
/*global Bloodhound */
+/*global _ */
+/*global Handlebars */
+'use strict';
define(
['page/events', 'features'],
function (events, features) {
@@ -63,7 +66,7 @@ define(
this.after('displayMail', function () {
this.on(this.select('newTagInput'), 'typeahead:selected typeahead:autocompleted', this.createNewTag);
});
- };
+ }
return withMailTagging;
}