make jshint happy ❤️

This commit is contained in:
Régis Hanol 2015-01-05 18:58:36 +01:00
parent 060cda7772
commit 47c4179e29
1 changed files with 3 additions and 3 deletions

View File

@ -56,7 +56,7 @@ Discourse.Group = Discourse.Model.extend({
}).then(function() {
// reload member list
self.findMembers();
})
});
},
asJSON: function() {
@ -79,7 +79,7 @@ Discourse.Group = Discourse.Model.extend({
},
destroy: function(){
if (!this.get('id')) { return };
if (!this.get('id')) { return; }
return Discourse.ajax("/admin/groups/" + this.get('id'), { type: "DELETE" });
},