##// END OF EJS Templates
Fix copy-paste mistakes
Thomas Kluyver -
Show More
@@ -2432,7 +2432,7 b' define(['
2432 2432 var that = this;
2433 2433 this.contents.restore_checkpoint(this.notebook_path, this.notebook_name,
2434 2434 checkpoint, {
2435 success: $.proxy(this.create_checkpoint_success, this),
2435 success: $.proxy(this.restore_checkpoint_success, this),
2436 2436 error: function (error) {
2437 2437 that.events.trigger('checkpoint_restore_failed.Notebook');
2438 2438 }
@@ -2460,7 +2460,7 b' define(['
2460 2460 var that = this;
2461 2461 this.contents.delete_checkpoint(this.notebook_path, this.notebook_name,
2462 2462 checkpoint, {
2463 success: $.proxy(this.create_checkpoint_success, this),
2463 success: $.proxy(this.delete_checkpoint_success, this),
2464 2464 error: function (error) {
2465 2465 that.events.trigger('checkpoint_delete_failed.Notebook', error);
2466 2466 }
General Comments 0
You need to be logged in to leave comments. Login now