2
0
mirror of https://github.com/Ionaru/easy-markdown-editor synced 2025-07-06 01:24:28 -06:00

Undo + Redo buttons are no longer added by default

This commit is contained in:
Jamie Wohletz 2016-01-03 12:55:57 -07:00
parent 68be24121f
commit 2f24d571b0

View File

@ -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"
}
};