Forgot to call show() on saving notification

This commit is contained in:
David Baumgold
2013-07-03 11:54:40 -04:00
parent dd39ebec03
commit 1a0d6d21bb

View File

@@ -123,7 +123,7 @@ CMS.Views.EditTextbook = Backbone.View.extend({
if(!this.model.isValid()) { return; }
var saving = new CMS.Views.Notification.Saving({
title: gettext("Saving…")
});
}).show();
var that = this;
this.model.save({}, {
success: function() {