missing semicolon
This commit is contained in:
parent
33fcf79444
commit
665ff95015
|
@ -163,7 +163,7 @@ Discourse.Category = Discourse.Model.extend({
|
||||||
|
|
||||||
setNotification: function(notification_level) {
|
setNotification: function(notification_level) {
|
||||||
var url = "/category/" + this.get('id')+"/notifications";
|
var url = "/category/" + this.get('id')+"/notifications";
|
||||||
this.set('notification_level', notification_level)
|
this.set('notification_level', notification_level);
|
||||||
return Discourse.ajax(url, {
|
return Discourse.ajax(url, {
|
||||||
data: {
|
data: {
|
||||||
notification_level: notification_level
|
notification_level: notification_level
|
||||||
|
|
Loading…
Reference in New Issue