##// END OF EJS Templates
Select default title when renaming a notebook...
Kevin Burke -
Show More
@@ -52,7 +52,7 var IPython = (function (IPython) {
52 $([IPython.events]).on('checkpoints_listed.Notebook', function (event, data) {
52 $([IPython.events]).on('checkpoints_listed.Notebook', function (event, data) {
53 that.set_last_checkpoint(data[0]);
53 that.set_last_checkpoint(data[0]);
54 });
54 });
55
55
56 $([IPython.events]).on('checkpoint_created.Notebook', function (event, data) {
56 $([IPython.events]).on('checkpoint_created.Notebook', function (event, data) {
57 that.set_last_checkpoint(data);
57 that.set_last_checkpoint(data);
58 });
58 });
@@ -104,7 +104,7 var IPython = (function (IPython) {
104 return false;
104 return false;
105 }
105 }
106 });
106 });
107 that.find('input[type="text"]').focus();
107 that.find('input[type="text"]').focus().select();
108 }
108 }
109 });
109 });
110 }
110 }
General Comments 0
You need to be logged in to leave comments. Login now