##// END OF EJS Templates
increase duration of save messages...
MinRK -
Show More
@@ -85,10 +85,10 b' var IPython = (function (IPython) {'
85 85 that.set_message("Saving notebook",500);
86 86 });
87 87 $([IPython.events]).on('notebook_saved.Notebook', function () {
88 that.set_message("Notebook saved",500);
88 that.set_message("Notebook saved",2000);
89 89 });
90 90 $([IPython.events]).on('notebook_save_failed.Notebook', function () {
91 that.set_message("Notebook save failed",500);
91 that.set_message("Notebook save failed",2000);
92 92 });
93 93 };
94 94
@@ -52,7 +52,7 b' var IPython = (function (IPython) {'
52 52 that.update_document_title();
53 53 });
54 54 $([IPython.events]).on('notebook_save_failed.Notebook', function () {
55 that.set_save_status('');
55 that.set_save_status('Last Save Failed!');
56 56 });
57 57 };
58 58
General Comments 0
You need to be logged in to leave comments. Login now