Update easymde.js

pull/449/head
Jonathan 2 years ago committed by GitHub
parent 332cf61086
commit 9a57f00d92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -803,21 +803,21 @@ function toggleHeading3(editor) {
/**
* Action for toggling heading size 4
*/
function toggleHeading3(editor) {
function toggleHeading4(editor) {
_toggleHeading(editor.codemirror, undefined, 4);
}
/**
* Action for toggling heading size 5
*/
function toggleHeading3(editor) {
function toggleHeading5(editor) {
_toggleHeading(editor.codemirror, undefined, 5);
}
/**
* Action for toggling heading size 6
*/
function toggleHeading3(editor) {
function toggleHeading6(editor) {
_toggleHeading(editor.codemirror, undefined, 6);
}

Loading…
Cancel
Save