From 9f29fabea80a3b30d781fd4dfc637e2d6fcf3e9a Mon Sep 17 00:00:00 2001 From: Safia Abdalla Date: Sat, 21 Nov 2015 18:39:55 -0600 Subject: [PATCH] Updated button layout in revert notebook dialog --- notebook/static/notebook/js/notebook.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notebook/static/notebook/js/notebook.js b/notebook/static/notebook/js/notebook.js index 5de9f14ba..7e6af842d 100644 --- a/notebook/static/notebook/js/notebook.js +++ b/notebook/static/notebook/js/notebook.js @@ -2850,14 +2850,14 @@ define(function (require) { title : "Revert notebook to checkpoint", body : body, buttons : { + Cancel: {}, Revert : { class : "btn-danger", click : function () { that.restore_checkpoint(checkpoint.id); } - }, - Cancel : {} } + } }); };