瀏覽代碼

fixed a bug with image disappearing when losing focus

Artal Druk 8 年之前
父節點
當前提交
fd2dadfa7c
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      src/editor.html

+ 1
- 1
src/editor.html 查看文件

@@ -927,7 +927,7 @@
927 927
 				//set focus
928 928
 				editor.focusout(function(){
929 929
 					var element = $(this);
930
-					if (!element.text().trim().length) {
930
+					if (!element.html().trim().length) {
931 931
 						element.empty();
932 932
 					}
933 933
 				});