mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 09:36:19 -05:00
JSHint: Add strict comparisons to poll_ui.js
This commit is contained in:
parent
c47b9a1b84
commit
9f51ab347a
2 changed files with 3 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue