add menu item for undo delete cell

closes #2920
This commit is contained in:
MinRK 2013-02-12 10:47:06 -08:00
parent 1445b189d4
commit 7566379d14
2 changed files with 5 additions and 1 deletions

View File

@ -83,6 +83,9 @@ var IPython = (function (IPython) {
this.element.find('#delete_cell').click(function () {
IPython.notebook.delete_cell();
});
this.element.find('#undelete_cell').click(function () {
IPython.notebook.undelete();
});
this.element.find('#split_cell').click(function () {
IPython.notebook.split_cell();
});

View File

@ -77,7 +77,8 @@ class="notebook_app"
<li id="paste_cell_above" class="ui-state-disabled"><a href="#">Paste Cell Above</a></li>
<li id="paste_cell_below" class="ui-state-disabled"><a href="#">Paste Cell Below</a></li>
<li id="paste_cell_replace" class="ui-state-disabled"><a href="#">Paste Cell &amp; Replace</a></li>
<li id="delete_cell"><a href="#">Delete</a></li>
<li id="delete_cell"><a href="#">Delete Cell</a></li>
<li id="undelete_cell"><a href="#">Undo Delete Cell</a></li>
<hr/>
<li id="split_cell"><a href="#">Split Cell</a></li>
<li id="merge_cell_above"><a href="#">Merge Cell Above</a></li>