From afb114e6d3f406f5b3bce9cb383e919c0a9610c3 Mon Sep 17 00:00:00 2001 From: "Brian E. Granger" Date: Sat, 7 Dec 2013 15:43:16 -0800 Subject: [PATCH] Removing unneeded select prev/next from Edit menu. --- IPython/html/static/notebook/js/menubar.js | 6 ------ IPython/html/templates/notebook.html | 3 --- 2 files changed, 9 deletions(-) diff --git a/IPython/html/static/notebook/js/menubar.js b/IPython/html/static/notebook/js/menubar.js index a5e1d47bf..befe83179 100644 --- a/IPython/html/static/notebook/js/menubar.js +++ b/IPython/html/static/notebook/js/menubar.js @@ -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(); }); diff --git a/IPython/html/templates/notebook.html b/IPython/html/templates/notebook.html index ec19b4c89..9abfe0cea 100644 --- a/IPython/html/templates/notebook.html +++ b/IPython/html/templates/notebook.html @@ -110,9 +110,6 @@ class="notebook_app"
  • Move Cell Up
  • Move Cell Down
  • -
  • Select Previous Cell
  • -
  • Select Next Cell
  • -
  • Edit Notebook Metadata