Remove extra comma

This commit is contained in:
Robin Ward 2013-03-26 18:37:07 -04:00
parent af7f6fea28
commit 994ab94107
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ Discourse.Category = Discourse.Model.extend({
text_color: this.get('text_color'), text_color: this.get('text_color'),
hotness: this.get('hotness') hotness: this.get('hotness')
}, },
type: this.get('id') ? 'PUT' : 'POST', type: this.get('id') ? 'PUT' : 'POST'
}); });
}, },