Remove support for drEditor components #895

This commit is contained in:
Kijin Sung 2017-09-28 18:13:30 +09:00
parent 9d95873a77
commit 824867259f
5 changed files with 1 additions and 117 deletions

View file

@ -294,18 +294,6 @@ jQuery(function($) {
});
}
/* 단락에디터 fold 컴포넌트 펼치기/접기 */
var drEditorFold = $('.xe_content .fold_button');
if(drEditorFold.size()) {
var fold_container = $('div.fold_container', drEditorFold);
$('button.more', drEditorFold).click(function() {
$(this).hide().next('button').show().parent().next(fold_container).show();
});
$('button.less', drEditorFold).click(function() {
$(this).hide().prev('button').show().parent().next(fold_container).hide();
});
}
jQuery('input[type="submit"],button[type="submit"]').click(function(ev){
var $el = jQuery(ev.currentTarget);