Browse Source

fix bug

master
pandao 10 years ago
parent
commit
25b9c23089
  1. 6
      editormd.amd.js
  2. 4
      editormd.amd.min.js
  3. 6
      editormd.js
  4. 4
      editormd.min.js
  5. 4
      src/editormd.js

6
editormd.amd.js

@ -7,7 +7,7 @@
* @license MIT License
* @author Pandao
* {@link https://github.com/pandao/editor.md}
* @updateTime 2015-05-05
* @updateTime 2015-05-06
*/
;(function(factory) {
@ -3658,6 +3658,10 @@
editormd.filterHTMLTags = function(html, filters) {
if (typeof html !== "string") {
html = new String(html);
}
if (typeof filters !== "string") {
return html;
}

4
editormd.amd.min.js

File diff suppressed because one or more lines are too long

6
editormd.js

@ -7,7 +7,7 @@
* @license MIT License
* @author Pandao
* {@link https://github.com/pandao/editor.md}
* @updateTime 2015-05-05
* @updateTime 2015-05-06
*/
;(function(factory) {
@ -3588,6 +3588,10 @@
editormd.filterHTMLTags = function(html, filters) {
if (typeof html !== "string") {
html = new String(html);
}
if (typeof filters !== "string") {
return html;
}

4
editormd.min.js

File diff suppressed because one or more lines are too long

4
src/editormd.js

@ -3576,6 +3576,10 @@
editormd.filterHTMLTags = function(html, filters) {
if (typeof html !== "string") {
html = new String(html);
}
if (typeof filters !== "string") {
return html;
}

Loading…
Cancel
Save