Skip to content

Commit

Permalink
write busy in notebook window title
Browse files Browse the repository at this point in the history
  • Loading branch information
Carreau committed Dec 1, 2011
1 parent 13c8185 commit 743176c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions IPython/frontend/html/notebook/static/js/kernelstatus.js
Expand Up @@ -34,6 +34,7 @@ var IPython = (function (IPython) {
this.element.removeClass("status_idle");
this.element.removeClass("status_restarting");
this.element.addClass("status_busy");
window.document.title='(Busy) '+window.document.title;
this.element.text("Busy");
};

Expand All @@ -42,6 +43,7 @@ var IPython = (function (IPython) {
this.element.removeClass("status_busy");
this.element.removeClass("status_restarting");
this.element.addClass("status_idle");
IPython.save_widget.set_document_title();
this.element.text("Idle");
};

Expand Down

0 comments on commit 743176c

Please sign in to comment.