##// END OF EJS Templates
write busy in notebook window title
Matthias BUSSONNIER -
Show More
@@ -34,6 +34,7 b' var IPython = (function (IPython) {'
34 this.element.removeClass("status_idle");
34 this.element.removeClass("status_idle");
35 this.element.removeClass("status_restarting");
35 this.element.removeClass("status_restarting");
36 this.element.addClass("status_busy");
36 this.element.addClass("status_busy");
37 window.document.title='(Busy) '+window.document.title;
37 this.element.text("Busy");
38 this.element.text("Busy");
38 };
39 };
39
40
@@ -42,6 +43,7 b' var IPython = (function (IPython) {'
42 this.element.removeClass("status_busy");
43 this.element.removeClass("status_busy");
43 this.element.removeClass("status_restarting");
44 this.element.removeClass("status_restarting");
44 this.element.addClass("status_idle");
45 this.element.addClass("status_idle");
46 IPython.save_widget.set_document_title();
45 this.element.text("Idle");
47 this.element.text("Idle");
46 };
48 };
47
49
General Comments 0
You need to be logged in to leave comments. Login now