##// END OF EJS Templates
Save and Checkpoint
MinRK -
Show More
@@ -25,7 +25,7 b' var IPython = (function (IPython) {'
25 this.add_buttons_group([
25 this.add_buttons_group([
26 {
26 {
27 id : 'save_b',
27 id : 'save_b',
28 label : 'Save Checkpoint',
28 label : 'Save and Checkpoint',
29 icon : 'ui-icon-disk',
29 icon : 'ui-icon-disk',
30 callback : function () {
30 callback : function () {
31 IPython.notebook.save_checkpoint();
31 IPython.notebook.save_checkpoint();
@@ -81,9 +81,6 b' var IPython = (function (IPython) {'
81 window.open(url,'_blank');
81 window.open(url,'_blank');
82 return false;
82 return false;
83 });
83 });
84 this.element.find('#save_notebook').click(function () {
85 IPython.notebook.save_notebook();
86 });
87 this.element.find('#save_checkpoint').click(function () {
84 this.element.find('#save_checkpoint').click(function () {
88 IPython.notebook.save_checkpoint();
85 IPython.notebook.save_checkpoint();
89 });
86 });
@@ -56,8 +56,7 b' class="notebook_app"'
56 <hr/>
56 <hr/>
57 <li id="copy_notebook"><a href="#">Make a Copy...</a></li>
57 <li id="copy_notebook"><a href="#">Make a Copy...</a></li>
58 <li id="rename_notebook"><a href="#">Rename...</a></li>
58 <li id="rename_notebook"><a href="#">Rename...</a></li>
59 <li id="save_notebook"><a href="#">Save</a></li>
59 <li id="save_checkpoint"><a href="#">Save and Checkpoint</a></li>
60 <li id="save_checkpoint"><a href="#">Save Checkpoint</a></li>
61 <hr/>
60 <hr/>
62 <li id="restore_checkpoint"><a href="#">Revert to Checkpoint</a></li>
61 <li id="restore_checkpoint"><a href="#">Revert to Checkpoint</a></li>
63 <hr/>
62 <hr/>
General Comments 0
You need to be logged in to leave comments. Login now