##// END OF EJS Templates
To the most conservative choice.
Brian E. Granger -
Show More
@@ -86,12 +86,12 b' var IPython = (function (IPython) {'
86 // Kernel events
86 // Kernel events
87 $([IPython.events]).on('status_idle.Kernel',function () {
87 $([IPython.events]).on('status_idle.Kernel',function () {
88 IPython.save_widget.update_document_title();
88 IPython.save_widget.update_document_title();
89 $kernel_ind_icon.attr('class','').attr('title','Kernel Idle');
89 $kernel_ind_icon.attr('class','icon-circle-blank').attr('title','Kernel Idle');
90 });
90 });
91
91
92 $([IPython.events]).on('status_busy.Kernel',function () {
92 $([IPython.events]).on('status_busy.Kernel',function () {
93 window.document.title='(Busy) '+window.document.title;
93 window.document.title='(Busy) '+window.document.title;
94 $kernel_ind_icon.attr('class','icon-sun icon-spin').attr('title','Kernel Busy');
94 $kernel_ind_icon.attr('class','icon-circle').attr('title','Kernel Busy');
95 });
95 });
96
96
97 $([IPython.events]).on('status_restarting.Kernel',function () {
97 $([IPython.events]).on('status_restarting.Kernel',function () {
General Comments 0
You need to be logged in to leave comments. Login now