From 2f24d571b0c0a76ab6648800b6635b786c588a5e Mon Sep 17 00:00:00 2001 From: Jamie Wohletz Date: Sun, 3 Jan 2016 12:55:57 -0700 Subject: [PATCH] Undo + Redo buttons are no longer added by default --- src/js/simplemde.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/js/simplemde.js b/src/js/simplemde.js index a4316c8..0b73baa 100644 --- a/src/js/simplemde.js +++ b/src/js/simplemde.js @@ -830,15 +830,13 @@ var toolbarBuiltInButtons = { name: "undo", action: undo, className: "fa fa-undo no-disable", - title: "Undo", - default: true + title: "Undo" }, "redo": { name: "redo", action: redo, className: "fa fa-repeat no-disable", - title: "Redo", - default: true + title: "Redo" } };