From 6c909285009ee1d0022e9c7fc15f3f16b813bbf3 2011-10-17 03:02:53 From: Fernando Perez Date: 2011-10-17 03:02:53 Subject: [PATCH] Change button labels in restart dialog to action words. --- diff --git a/IPython/frontend/html/notebook/static/js/notebook.js b/IPython/frontend/html/notebook/static/js/notebook.js index 86be02e..7af23d3 100644 --- a/IPython/frontend/html/notebook/static/js/notebook.js +++ b/IPython/frontend/html/notebook/static/js/notebook.js @@ -735,11 +735,11 @@ var IPython = (function (IPython) { modal: true, title: "Dead kernel", buttons : { - "Yes": function () { + "Restart": function () { that.start_kernel(); $(this).dialog('close'); }, - "No": function () { + "Continue running": function () { $(this).dialog('close'); } }