diff --git a/.jshintignore b/.jshintignore index a9024da83..a69f6a1f5 100644 --- a/.jshintignore +++ b/.jshintignore @@ -6,7 +6,6 @@ lib/javascripts/locale/ lib/javascripts/messageformat.js lib/javascripts/moment.js lib/javascripts/moment_locale/ -plugins/poll/assets/javascripts/poll_ui.js public/javascripts/ spec/phantom_js/smoke_test.js test/javascripts/helpers/assertions.js diff --git a/plugins/poll/assets/javascripts/poll_ui.js b/plugins/poll/assets/javascripts/poll_ui.js index 891254dc0..fdafc7ec2 100644 --- a/plugins/poll/assets/javascripts/poll_ui.js +++ b/plugins/poll/assets/javascripts/poll_ui.js @@ -14,7 +14,7 @@ var Poll = Discourse.Model.extend({ options.push(Ember.Object.create({ option: option, votes: json["options"][option], - checked: (option == selectedOption) + checked: (option === selectedOption) })); }); this.set('options', options); @@ -22,7 +22,7 @@ var Poll = Discourse.Model.extend({ saveVote: function(option) { this.get('options').forEach(function(opt) { - opt.set('checked', opt.get('option') == option); + opt.set('checked', opt.get('option') === option); }); return Discourse.ajax("/poll", { @@ -99,7 +99,7 @@ Discourse.PostView.reopen({ var view = initializePollView(this); var pollContainer = $post.find(".poll-ui:first"); - if (pollContainer.length == 0) { + if (pollContainer.length === 0) { pollContainer = $post.find("ul:first"); }