FF 계열의 웹 브라우저에서 포커스가 갈 때 커서가 안 보이는 버그 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7952 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
taggon 2010-12-03 07:42:01 +00:00
parent a184543714
commit 029af9614e

View file

@ -117,6 +117,7 @@ Xeed = xe.createApp('Xeed', {
this.registerPlugin(new Clear);
// set content
if (!content) content = '<br />';
setTimeout(function(){ self.cast('SET_CONTENT', [content]) }, 0);
},
@ -376,6 +377,7 @@ Xeed = xe.createApp('Xeed', {
if (sel) return;
if (!this.$richedit.html()) this.cast('SET_CONTENT', ['<br />']);
this.$richedit.focus();
},