summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFolker Bernitt <fbernitt@thoughtworks.com>2014-10-09 10:58:45 +0200
committerFolker Bernitt <fbernitt@thoughtworks.com>2014-10-09 10:58:45 +0200
commitcaa949af3c5698902f86d1e72e44cbe6e495dbdd (patch)
tree1351d94d177e071262cefd64ee932600bba59cca
parent21b025f80e8fc4168a9717cf691114a0b5154baf (diff)
Fixed jshint warnings.
-rw-r--r--web-ui/app/js/mixins/with_mail_tagging.js2
-rw-r--r--web-ui/test/spec/page/logout.spec.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/web-ui/app/js/mixins/with_mail_tagging.js b/web-ui/app/js/mixins/with_mail_tagging.js
index 16da258f..482cd0aa 100644
--- a/web-ui/app/js/mixins/with_mail_tagging.js
+++ b/web-ui/app/js/mixins/with_mail_tagging.js
@@ -34,7 +34,7 @@ define(
this.tagFilter = function (parsedResult) {
var filtered = _.filter(parsedResult, function (tag) {return ! _.contains(mail.tags, tag.name); });
return _.map(filtered, function(tag) { return {value: Handlebars.Utils.escapeExpression(tag.name)}; });
- }
+ };
this.tagCompleter = new Bloodhound({
datumTokenizer: function(d) { return [d.value]; },
diff --git a/web-ui/test/spec/page/logout.spec.js b/web-ui/test/spec/page/logout.spec.js
index c614af6d..fa1b2634 100644
--- a/web-ui/test/spec/page/logout.spec.js
+++ b/web-ui/test/spec/page/logout.spec.js
@@ -8,7 +8,7 @@ describeComponent('page/logout', function () {
beforeEach(function() {
features = require('features');
- });
+ });
it('should provide logout link if logout is enabled', function () {
spyOn(features, 'isLogoutEnabled').andReturn(true);