From 304d72a78a4cc9c4e7e10f2f0e30945f194d3849 2012-05-31 20:08:22 From: Matthias BUSSONNIER Date: 2012-05-31 20:08:22 Subject: [PATCH] fix multiple busy in title bar due to completer --- diff --git a/IPython/frontend/html/notebook/static/js/completer.js b/IPython/frontend/html/notebook/static/js/completer.js index ef62df8..775d17c 100644 --- a/IPython/frontend/html/notebook/static/js/completer.js +++ b/IPython/frontend/html/notebook/static/js/completer.js @@ -44,7 +44,6 @@ var IPython = (function(IPython ) { that.skip_kernel_completion = true; }); $([IPython.events]).on('status_idle.Kernel',function () { - window.document.title='(Busy) '+window.document.title; that.skip_kernel_completion = false; });