Skip to content
This repository was archived by the owner on May 12, 2023. It is now read-only.

Commit 2f6b2e9

Browse files
committed
bumped editormd
1 parent c2464ec commit 2f6b2e9

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

editormd.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Editor.md
33
*
44
* @file editormd.js
5-
* @version v1.7.11
5+
* @version v1.7.12
66
* @description Open source online markdown editor.
77
* @license MIT License
88
* @author Pandao
@@ -59,7 +59,7 @@
5959
};
6060

6161
editormd.title = editormd.$name = "Editor.md";
62-
editormd.version = "1.7.11";
62+
editormd.version = "1.7.12";
6363
editormd.homePage = "https://pandao.github.io/editor.md/";
6464
editormd.classPrefix = "editormd-";
6565

@@ -3990,7 +3990,7 @@
39903990
callback();
39913991
};
39923992

3993-
css.href = fileName + `.css?version=${version}`;
3993+
css.href = fileName + `.css?editormd_version=${version}`;
39943994

39953995
if(into === "head") {
39963996
document.getElementsByTagName("head")[0].appendChild(css);
@@ -4021,7 +4021,7 @@
40214021
script = document.createElement("script");
40224022
script.id = fileName.replace(/[\./]+/g, "-");
40234023
script.type = "text/javascript";
4024-
script.src = fileName + `.js?version=${version}`;
4024+
script.src = fileName + `.js?editormd_version=${version}`;
40254025

40264026
if (editormd.isIE8)
40274027
{

package-lock.json

+2-2
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": "@ibm-skills-network/editor.md",
3-
"version": "1.7.11",
3+
"version": "1.7.12",
44
"description": "Open source online markdown editor.",
55
"directories": {
66
"doc": "docs",

src/editormd.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
};
4848

4949
editormd.title = editormd.$name = "Editor.md";
50-
editormd.version = "1.7.11";
50+
editormd.version = "1.7.12";
5151
editormd.homePage = "https://pandao.github.io/editor.md/";
5252
editormd.classPrefix = "editormd-";
5353

@@ -3978,7 +3978,7 @@
39783978
callback();
39793979
};
39803980

3981-
css.href = fileName + `.css?version=${version}`;
3981+
css.href = fileName + `.css?editormd_version=${version}`;
39823982

39833983
if(into === "head") {
39843984
document.getElementsByTagName("head")[0].appendChild(css);
@@ -4009,7 +4009,7 @@
40094009
script = document.createElement("script");
40104010
script.id = fileName.replace(/[\./]+/g, "-");
40114011
script.type = "text/javascript";
4012-
script.src = fileName + `.js?version=${version}`;
4012+
script.src = fileName + `.js?editormd_version=${version}`;
40134013

40144014
if (editormd.isIE8)
40154015
{

0 commit comments

Comments
 (0)