From 715e87afc20f952e78fc6a3565aafb63732d7fef Mon Sep 17 00:00:00 2001 From: Min RK Date: Tue, 21 Jul 2015 14:17:19 -0700 Subject: [PATCH] Fix scope on restart buttons Restart button was excluded since it was inside another button. --- notebook/static/notebook/js/notebook.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebook/static/notebook/js/notebook.js b/notebook/static/notebook/js/notebook.js index 977dc909b..8584c1e50 100644 --- a/notebook/static/notebook/js/notebook.js +++ b/notebook/static/notebook/js/notebook.js @@ -1637,13 +1637,13 @@ define(function (require) { that.clear_all_output(); that.kernel.restart(); }, + }, "Restart" : { "class" : "btn-warning", "click" : function() { that.kernel.restart(); } }, - } } }); };