Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 65bc9e8

Browse files
committed
*all* user-initiated saves create a checkpoint
1 parent a188c64 commit 65bc9e8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

IPython/frontend/html/notebook/static/js/notebook.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ var IPython = (function (IPython) {
130130
// Save (CTRL+S) or (AppleKey+S)
131131
//metaKey = applekey on mac
132132
if ((event.ctrlKey || event.metaKey) && event.keyCode==83) {
133-
that.save_notebook();
133+
that.save_checkpoint();
134134
event.preventDefault();
135135
return false;
136136
} else if (event.which === key.ESC) {

0 commit comments

Comments
 (0)