Procházet zdrojové kódy

fixed a bug with image disappearing when losing focus

Artal Druk před 8 roky
rodič
revize
fd2dadfa7c
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      src/editor.html

+ 1
- 1
src/editor.html Zobrazit soubor

@@ -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
 				});