From 70eb95d04c178cb9074cfe1836e092ab72fc05c8 Mon Sep 17 00:00:00 2001 From: Matthias BUSSONNIER Date: Sun, 20 Jul 2014 19:39:16 +0200 Subject: [PATCH] remove call to jquery-ui useless button() --- IPython/html/static/tree/js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPython/html/static/tree/js/main.js b/IPython/html/static/tree/js/main.js index 5c0b018ec..b321b34b3 100644 --- a/IPython/html/static/tree/js/main.js +++ b/IPython/html/static/tree/js/main.js @@ -46,7 +46,7 @@ require([ common_options)); login_widget = new loginwidget.LoginWidget('#login_widget', common_options); - $('#new_notebook').button().click(function (e) { + $('#new_notebook').click(function (e) { notebook_list.new_notebook(); });