Remove most minified CSS and JS files

This commit is contained in:
Kijin Sung 2016-01-07 11:35:06 +09:00
parent 002d239137
commit ff155c1abc
76 changed files with 43 additions and 9358 deletions

File diff suppressed because one or more lines are too long

View file

@ -2,8 +2,7 @@
<load target="css/default.css" />
<!--// 기본 JS 로드 -->
<load target="../../tpl/js/editor_common.js" cond="__DEBUG__" />
<load target="../../tpl/js/editor_common.min.js" cond="!__DEBUG__" />
<load target="../../tpl/js/editor_common.js" />
<!--@if($colorset == "black" || $colorset == "black_texteditor" || $colorset == "black_text_nohtml" || $colorset == "black_text_usehtml")-->
<!--%import("css/black.css")-->
@ -11,8 +10,7 @@
<!--@end-->
<!--@if($colorset == "white_texteditor" || $colorset == "black_texteditor" || $colorset == "white_text_nohtml" || $colorset == "black_text_nohtml" || $colorset == "white_text_usehtml" || $colorset == "black_text_usehtml")-->
<load target="js/xe_textarea.js" cond="__DEBUG__" />
<load target="js/xe_textarea.min.js" cond="!__DEBUG__" />
<load target="js/xe_textarea.js" />
<div class="xeTextEditor {$editor_class}">
<input type="hidden" id="htm_{$editor_sequence}" value="<!--@if($colorset == "white_text_nohtml" || $colorset == "black_text_nohtml")-->n<!--@end--><!--@if($colorset == "white_texteditor" || $colorset == "white_texteditor")-->br<!--@end-->" />
@ -25,9 +23,8 @@
<!--@else-->
<!--// 기본 js/언어파일 로드 -->
<load target="js/Xpress_Editor.js" cond="__DEBUG__" />
<load target="js/xe_interface.js" cond="__DEBUG__" />
<load target="js/xpresseditor.js" cond="!__DEBUG__" />
<load target="js/Xpress_Editor.js" />
<load target="js/xe_interface.js" />
<!-- 자동저장용 폼 -->

View file

@ -1 +0,0 @@
function editorStartTextarea(a,b,c){var d=xGetElementById("editor_"+a),e=xGetElementById("htm_"+a).value;d.form.setAttribute("editor_sequence",a),d.style.width="100%",editorRelKeys[a]=new Array,editorRelKeys[a].primary=d.form[c],editorRelKeys[a].content=d.form[b],editorRelKeys[a].func=editorGetContentTextarea;var f=d.form[b].value;e&&(f=f.replace(/<br([^>]*)>/gi,"\n"),"br"!=e&&(f=f.replace(/&lt;/g,"<"),f=f.replace(/&gt;/g,">"),f=f.replace(/&quot;/g,'"'),f=f.replace(/&amp;/g,"&"))),d.value=f}function editorGetContentTextarea(a){var b=xGetElementById("editor_"+a),c=xGetElementById("htm_"+a).value,d=b.value.trim();return c&&("br"!=c&&(d=d.replace(/&/g,"&amp;"),d=d.replace(/</g,"&lt;"),d=d.replace(/>/g,"&gt;"),d=d.replace(/\"/g,"&quot;"))),d}

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long