From 0e4afee63b00accd2d1f70f14db930f0b950c286 Mon Sep 17 00:00:00 2001 From: MinRK Date: Sat, 22 Oct 2011 15:50:15 -0700 Subject: [PATCH] set 'In [*]' to indicate pending code cell --- IPython/frontend/html/notebook/static/js/notebook.js | 1 + 1 file changed, 1 insertion(+) diff --git a/IPython/frontend/html/notebook/static/js/notebook.js b/IPython/frontend/html/notebook/static/js/notebook.js index c27f701cd..9dc059e39 100644 --- a/IPython/frontend/html/notebook/static/js/notebook.js +++ b/IPython/frontend/html/notebook/static/js/notebook.js @@ -829,6 +829,7 @@ var IPython = (function (IPython) { var cell_index = that.find_cell_index(cell); if (cell instanceof IPython.CodeCell) { cell.clear_output(true, true, true); + cell.set_input_prompt('*'); var code = cell.get_code(); var msg_id = that.kernel.execute(cell.get_code()); that.msg_cell_map[msg_id] = cell.cell_id;