From 3d233ff22f0fbca2969eed1818a711be69dbaa41 Mon Sep 17 00:00:00 2001 From: MinRK Date: Sun, 2 Jun 2013 15:46:06 -0700 Subject: [PATCH] fix wrong arrow direction --- .../frontend/html/notebook/static/notebook/js/maintoolbar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPython/frontend/html/notebook/static/notebook/js/maintoolbar.js b/IPython/frontend/html/notebook/static/notebook/js/maintoolbar.js index 0798b4737..81df06990 100644 --- a/IPython/frontend/html/notebook/static/notebook/js/maintoolbar.js +++ b/IPython/frontend/html/notebook/static/notebook/js/maintoolbar.js @@ -71,7 +71,7 @@ var IPython = (function (IPython) { { id : 'move_down_b', label : 'Move Cell Down', - icon : 'icon-arrow-up', + icon : 'icon-arrow-down', callback : function () { IPython.notebook.move_cell_down(); }