Browse Source

fix bug

master
pandao 10 years ago
parent
commit
57c27c4903
  1. 1
      CHANGE.md
  2. 4
      editormd.amd.js
  3. 2
      editormd.amd.min.js
  4. 4
      editormd.js
  5. 2
      editormd.min.js
  6. 4
      src/editormd.js

1
CHANGE.md

@ -427,6 +427,5 @@ v1.2.0 主要更新:
- 新增测试用例`tests/katex-tests.html`; - 新增测试用例`tests/katex-tests.html`;
- 修改示例文件`examples/katex.html`; - 修改示例文件`examples/katex.html`;
- 修复Bug [#66](https://github.com/pandao/editor.md/issues/66); - 修复Bug [#66](https://github.com/pandao/editor.md/issues/66);
- 修改`editormd.emoji`和`editormd.twemoji`属性,即去掉`http:`,以匹配`https:`;
- 修复编辑器工具栏按钮`:hover` CSS3 transition无效的问题; - 修复编辑器工具栏按钮`:hover` CSS3 transition无效的问题;
- 修改`README.md`; - 修改`README.md`;

4
editormd.amd.js

@ -3210,13 +3210,13 @@
// Emoji graphics files url path // Emoji graphics files url path
editormd.emoji = { editormd.emoji = {
path : "//www.emoji-cheat-sheet.com/graphics/emojis/",
path : "http://www.emoji-cheat-sheet.com/graphics/emojis/",
ext : ".png" ext : ".png"
}; };
// Twitter Emoji (Twemoji) graphics files url path // Twitter Emoji (Twemoji) graphics files url path
editormd.twemoji = { editormd.twemoji = {
path : "//twemoji.maxcdn.com/36x36/",
path : "http://twemoji.maxcdn.com/36x36/",
ext : ".png" ext : ".png"
}; };

2
editormd.amd.min.js

File diff suppressed because one or more lines are too long

4
editormd.js

@ -3140,13 +3140,13 @@
// Emoji graphics files url path // Emoji graphics files url path
editormd.emoji = { editormd.emoji = {
path : "//www.emoji-cheat-sheet.com/graphics/emojis/",
path : "http://www.emoji-cheat-sheet.com/graphics/emojis/",
ext : ".png" ext : ".png"
}; };
// Twitter Emoji (Twemoji) graphics files url path // Twitter Emoji (Twemoji) graphics files url path
editormd.twemoji = { editormd.twemoji = {
path : "//twemoji.maxcdn.com/36x36/",
path : "http://twemoji.maxcdn.com/36x36/",
ext : ".png" ext : ".png"
}; };

2
editormd.min.js

File diff suppressed because one or more lines are too long

4
src/editormd.js

@ -3128,13 +3128,13 @@
// Emoji graphics files url path // Emoji graphics files url path
editormd.emoji = { editormd.emoji = {
path : "//www.emoji-cheat-sheet.com/graphics/emojis/",
path : "http://www.emoji-cheat-sheet.com/graphics/emojis/",
ext : ".png" ext : ".png"
}; };
// Twitter Emoji (Twemoji) graphics files url path // Twitter Emoji (Twemoji) graphics files url path
editormd.twemoji = { editormd.twemoji = {
path : "//twemoji.maxcdn.com/36x36/",
path : "http://twemoji.maxcdn.com/36x36/",
ext : ".png" ext : ".png"
}; };

Loading…
Cancel
Save