스마트 에디터2 ie 11에서 개행문자 처리

This commit is contained in:
thisgun
2014-07-28 11:08:39 +09:00
parent 02f7e386a4
commit 3c104111a0
2 changed files with 5 additions and 3 deletions

View File

@ -6851,8 +6851,10 @@ nhn.husky.SE_EditingArea_WYSIWYG = jindo.$Class({
// --[SMARTEDITORSUS-875]
var sContent,
oNavigator = this.oApp.oNavigator,
bUnderIE11 = oNavigator.ie && document.documentMode < 11, // IE11미만
oNavigator = this.oApp.oNavigator,
tmp_htBrowser = jindo.$Agent().navigator(),
//bUnderIE11 = oNavigator.ie && document.documentMode < 11, // IE11미만
bUnderIE11 = oNavigator.ie && tmp_htBrowser.nativeVersion < 11, // IE11미만
sCursorHolder = bUnderIE11 ? "" : "<br>";
if(this.oApp.applyConverter){

File diff suppressed because one or more lines are too long