Commit 1a0d6d21 by David Baumgold

Forgot to call show() on saving notification

parent dd39ebec
...@@ -123,7 +123,7 @@ CMS.Views.EditTextbook = Backbone.View.extend({ ...@@ -123,7 +123,7 @@ CMS.Views.EditTextbook = Backbone.View.extend({
if(!this.model.isValid()) { return; } if(!this.model.isValid()) { return; }
var saving = new CMS.Views.Notification.Saving({ var saving = new CMS.Views.Notification.Saving({
title: gettext("Saving…") title: gettext("Saving…")
}); }).show();
var that = this; var that = this;
this.model.save({}, { this.model.save({}, {
success: function() { success: function() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment