Преглед изворни кода

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