Skip to content
This repository was archived by the owner on Jul 30, 2020. It is now read-only.

Commit 9c779bf

Browse files
committedJan 17, 2019
Merge branch 'hotfix/2.5.1'
2 parents 8c6ae58 + 20cd3e4 commit 9c779bf

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed
 

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Changes include:
1111
* Support for Node 8 and beyond
1212
* Lots of refactored code
1313
* Links in preview will open in a new tab by default
14+
* Typescript support
1415

1516
My intention is to continue development on this project, improving it and keeping it alive.
1617

‎dist/easymde.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/easymde.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "easymde",
3-
"version": "2.5.0",
3+
"version": "2.5.1",
44
"description": "A simple, beautiful, and embeddable JavaScript Markdown editor that easy to use. Features include autosaving and spell checking.",
55
"keywords": [
66
"embeddable",

‎src/js/easymde.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ function createIcon(options, enableTooltips, shortcuts) {
119119
options = options || {};
120120
var el = document.createElement('button');
121121
el.className = options.name;
122-
el.setAttribute('role', 'button');
122+
el.setAttribute('type', 'button');
123123
enableTooltips = (enableTooltips == undefined) ? true : enableTooltips;
124124

125125
if (options.title && enableTooltips) {

0 commit comments

Comments
 (0)