Merge branch 'hotfix/2.5.1'

pull/53/head 2.5.1
Jeroen Akkerman hace 5 años
commit 9c779bf85c

@ -11,6 +11,7 @@ Changes include:
* Support for Node 8 and beyond
* Lots of refactored code
* Links in preview will open in a new tab by default
* Typescript support
My intention is to continue development on this project, improving it and keeping it alive.

@ -1,5 +1,5 @@
/**
* easymde v2.5.0
* easymde v2.5.1
* Copyright Jeroen Akkerman
* @link https://github.com/ionaru/easy-markdown-editor
* @license MIT

Las diferiencias del archivo han sido suprimidas porque una o mas lineas son muy largas

2
package-lock.json generado

@ -1,6 +1,6 @@
{
"name": "easymde",
"version": "2.5.0",
"version": "2.5.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

@ -1,6 +1,6 @@
{
"name": "easymde",
"version": "2.5.0",
"version": "2.5.1",
"description": "A simple, beautiful, and embeddable JavaScript Markdown editor that easy to use. Features include autosaving and spell checking.",
"keywords": [
"embeddable",

@ -119,7 +119,7 @@ function createIcon(options, enableTooltips, shortcuts) {
options = options || {};
var el = document.createElement('button');
el.className = options.name;
el.setAttribute('role', 'button');
el.setAttribute('type', 'button');
enableTooltips = (enableTooltips == undefined) ? true : enableTooltips;
if (options.title && enableTooltips) {

Cargando…
Cancelar
Guardar