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

Commit

Permalink
bumped editormd
Browse files Browse the repository at this point in the history
  • Loading branch information
eugene-f02 committed Sep 16, 2022
1 parent c2464ec commit 2f6b2e9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions editormd.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Editor.md
*
* @file editormd.js
* @version v1.7.11
* @version v1.7.12
* @description Open source online markdown editor.
* @license MIT License
* @author Pandao
Expand Down Expand Up @@ -59,7 +59,7 @@
};

editormd.title = editormd.$name = "Editor.md";
editormd.version = "1.7.11";
editormd.version = "1.7.12";
editormd.homePage = "https://pandao.github.io/editor.md/";
editormd.classPrefix = "editormd-";

Expand Down Expand Up @@ -3990,7 +3990,7 @@
callback();
};

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

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

if (editormd.isIE8)
{
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ibm-skills-network/editor.md",
"version": "1.7.11",
"version": "1.7.12",
"description": "Open source online markdown editor.",
"directories": {
"doc": "docs",
Expand Down
6 changes: 3 additions & 3 deletions src/editormd.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
};

editormd.title = editormd.$name = "Editor.md";
editormd.version = "1.7.11";
editormd.version = "1.7.12";
editormd.homePage = "https://pandao.github.io/editor.md/";
editormd.classPrefix = "editormd-";

Expand Down Expand Up @@ -3978,7 +3978,7 @@
callback();
};

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

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

if (editormd.isIE8)
{
Expand Down

0 comments on commit 2f6b2e9

Please sign in to comment.