From 5a9305cf20807d16ec6c7fc546ff75ca41451516 Mon Sep 17 00:00:00 2001 From: "Brian E. Granger" Date: Mon, 19 Oct 2015 13:07:30 -0400 Subject: [PATCH] Mixed up mark above and below... --- notebook/static/notebook/js/actions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notebook/static/notebook/js/actions.js b/notebook/static/notebook/js/actions.js index 3a7197154..3f15ad178 100644 --- a/notebook/static/notebook/js/actions.js +++ b/notebook/static/notebook/js/actions.js @@ -177,14 +177,14 @@ define(function(require){ help: 'extend marked above', help_index : 'dc', handler : function (env) { - env.notebook.extend_marked(1); + env.notebook.extend_marked(-1); } }, 'extend-marked-next' : { help: 'extend marked below', help_index : 'dd', handler : function (env) { - env.notebook.extend_marked(-1); + env.notebook.extend_marked(1); } }, 'cut-selected-cell' : {