From ed9e34db6259585dfb1b807f32e38dc02272bf13 2015-01-26 02:08:33 From: Jonathan Frederic Date: 2015-01-26 02:08:33 Subject: [PATCH] Use running text instead of icon. --- diff --git a/IPython/html/static/tree/js/notebooklist.js b/IPython/html/static/tree/js/notebooklist.js index cb6e10a..eaeae04 100644 --- a/IPython/html/static/tree/js/notebooklist.js +++ b/IPython/html/static/tree/js/notebooklist.js @@ -301,9 +301,10 @@ define([ .addClass("item_buttons pull-right") .appendTo(item); - $('') - .addClass('fa fa-power-off running-indicator') - .css('visible', 'hidden') + $('
') + .addClass('running-indicator') + .text('Running') + .css('visibility', 'hidden') .appendTo(buttons); if (index === -1) { @@ -394,7 +395,7 @@ define([ ); var running = (model.type == 'notebook' && this.sessions[path] !== undefined); - item.find(".item_buttons i.running-indicator").css('visibility', running ? '' : 'hidden'); + item.find(".item_buttons .running-indicator").css('visibility', running ? '' : 'hidden'); // directory nav doesn't open new tabs // files, notebooks do