Merge pull request #2092 from nschonni/jshinting

Jshinting during CI build
This commit is contained in:
Régis Hanol
2014-03-10 09:51:11 +01:00
4 changed files with 36 additions and 30 deletions

View File

@ -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");
}