Skip to content

Commit

Permalink
Restore backwards compatibility with SimpleMDE, fixes #41
Browse files Browse the repository at this point in the history
  • Loading branch information
Ionaru committed Feb 20, 2019
1 parent aa47cbd commit fa9ff58
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
23 changes: 20 additions & 3 deletions src/js/easymde.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,19 +131,36 @@ function createIcon(options, enableTooltips, shortcuts) {
}
}

if (options.noDisable) {
if (options.noDisable || options.className.indexOf('no-disable') !== -1) {
el.classList.add('no-disable');
}

if (options.noMobile) {
if (options.noMobile || options.className.indexOf('no-mobile') !== -1) {
el.classList.add('no-mobile');
}

// Provide backwards compatibility with simple-markdown-editor by adding custom classes to the button.
var classNameParts = options.className.split(' ');
var iconClasses = [];
for (var classNameIndex = 0; classNameIndex < classNameParts.length; classNameIndex++) {
var classNamePart = classNameParts[classNameIndex];
// Split icon classes from the button.
// Regex will detect "fa" and "fa-something", but not "fanfare".
if (classNamePart.match(/^fa((-.*)|$)/)) {
iconClasses.push(classNamePart);
} else {
el.classList.add(classNamePart);
}
}

el.tabIndex = -1;

// Create icon element and append as a child to the button
var icon = document.createElement('i');
icon.className = options.className;
for (var iconClassIndex = 0; iconClassIndex < iconClasses.length; iconClassIndex++) {
var iconClass = iconClasses[iconClassIndex];
icon.classList.add(iconClass)
}
el.appendChild(icon);

return el;
Expand Down
2 changes: 2 additions & 0 deletions types/easymde.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ declare namespace EasyMDE {
action: string|((editor: EasyMDE) => void);
className: string;
title: string;
noDisable: boolean;
noMobile: boolean;
}

interface Options {
Expand Down

0 comments on commit fa9ff58

Please sign in to comment.