Removing unneeded select prev/next from Edit menu.

This commit is contained in:
Brian E. Granger 2013-12-07 15:43:16 -08:00
parent 54666e2e98
commit afb114e6d3
2 changed files with 0 additions and 9 deletions

View File

@ -178,12 +178,6 @@ var IPython = (function (IPython) {
this.element.find('#move_cell_down').click(function () {
IPython.notebook.move_cell_down();
});
this.element.find('#select_previous').click(function () {
IPython.notebook.select_prev();
});
this.element.find('#select_next').click(function () {
IPython.notebook.select_next();
});
this.element.find('#edit_nb_metadata').click(function () {
IPython.notebook.edit_metadata();
});

View File

@ -110,9 +110,6 @@ class="notebook_app"
<li id="move_cell_up"><a href="#">Move Cell Up</a></li>
<li id="move_cell_down"><a href="#">Move Cell Down</a></li>
<li class="divider"></li>
<li id="select_previous"><a href="#">Select Previous Cell</a></li>
<li id="select_next"><a href="#">Select Next Cell</a></li>
<li class="divider"></li>
<li id="edit_nb_metadata"><a href="#">Edit Notebook Metadata</a></li>
</ul>
</li>