스마트에디터2에서 display none에서 display block 전환시 에디터 안나올때
페이지 정보
작성일 23-02-20 14:05
본문
스마트에디터2에서 display none에서 display block 전환시 에디터 안나올때
/plugin/editor/smarteditor2/js/service/HuskyEZCreator.js
HuskyEZCreator.js 69라인 정도
try{ elIFrame = document.createElement("<IFRAME frameborder=0 scrolling=no>"); }catch(e){ elIFrame = document.createElement("IFRAME"); elIFrame.setAttribute("frameborder", "0"); elIFrame.setAttribute("scrolling", "no"); }
.
.
아래와 같이 class="class_smarteditor2" 추가
try{
elIFrame = document.createElement('<IFRAME frameborder="0" scrolling="no" class="class_smarteditor2">'); }catch(e){ elIFrame = document.createElement("IFRAME"); elIFrame.setAttribute("frameborder", "0"); elIFrame.setAttribute("scrolling", "no"); elIFrame.setAttribute("class", "class_smarteditor2"); }
그런다음 스마트에디터를 호출하는 부분에서 display:block 시킬때
$('.class_smarteditor2').css('height', '300px'); // 스마트 에디터 height 지정
추천 0 비추천 0
- 이전글 YouTube 내장 플레이어 및 플레이어 매개변수 23.04.10