summaryrefslogtreecommitdiff
path: root/web-ui/app/js/mixins/with_mail_tagging.js
diff options
context:
space:
mode:
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;
}