mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-27 23:29:57 +09:00
minify 갱신.
This commit is contained in:
parent
6fa233dcff
commit
c7a8468406
25 changed files with 1247 additions and 1640 deletions
|
|
@ -1,2 +1,2 @@
|
|||
function editorStartTextarea(a,b,e){var c=xGetElementById("editor_"+a),d=xGetElementById("htm_"+a).value;c.form.setAttribute("editor_sequence",a);c.style.width="100%";editorRelKeys[a]=[];editorRelKeys[a].primary=c.form[e];editorRelKeys[a].content=c.form[b];editorRelKeys[a].func=editorGetContentTextarea;a=c.form[b].value;d&&(a=a.replace(/<br([^>]*)>/ig,"\n"),"br"!=d&&(a=a.replace(/</g,"<"),a=a.replace(/>/g,">"),a=a.replace(/"/g,'"'),a=a.replace(/&/g,"&")));c.value=a}
|
||||
function editorGetContentTextarea(a){var b=xGetElementById("editor_"+a);a=xGetElementById("htm_"+a).value;b=b.value.trim();a&&("br"!=a&&(b=b.replace(/&/g,"&"),b=b.replace(/</g,"<"),b=b.replace(/>/g,">"),b=b.replace(/\"/g,""")),b=b.replace(/(\r\n|\n)/g,"<br />"));return b};
|
||||
/*! Copyright (C) NAVER <http://www.navercorp.com> */
|
||||
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(/</g,"<"),f=f.replace(/>/g,">"),f=f.replace(/"/g,'"'),f=f.replace(/&/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,"&"),d=d.replace(/</g,"<"),d=d.replace(/>/g,">"),d=d.replace(/\"/g,""")),d=d.replace(/(\r\n|\n)/g,"<br />")),d}
|
||||
|
|
@ -1,3 +1,8 @@
|
|||
/*! Copyright (C) NAVER <http://www.navercorp.com> */
|
||||
/**!
|
||||
* @file common.js + js_app.js + xml_handler.js + xml_js_filter.js
|
||||
* @brief XE Common JavaScript
|
||||
**/
|
||||
(function($){
|
||||
|
||||
// extends jQuery object
|
||||
|
|
@ -5124,7 +5129,7 @@ var
|
|||
|
||||
var
|
||||
allow_tags = 'a,abbr,acronym,address,area,blockquote,br,caption,center,cite,code,col,colgroup,dd,del,dfn,div,dl,dt,em,embed,h1,h2,h3,h4,h5,h6,hr,img,ins,kbd,li,map,object,ol,p,param,pre,q,samp,span,strong,sub,sup,table,tbody,td,tfoot,th,thead,tr,tt,u,ul,var,iframe,object,param,style'.split(','),
|
||||
no_closing_tags = 'base,meta,link,hr,br,basefont,param,img,area,input,isindex,col'.split(',');
|
||||
no_closing_tags = 'area,br,col,embed,hr,img,input,param,base,meta,link,basefont,isindex'.split(',');
|
||||
|
||||
|
||||
var
|
||||
|
|
@ -5817,6 +5822,7 @@ xe.XE_Table = $.Class({
|
|||
}).extend(xe.XE_Table);
|
||||
|
||||
})(jQuery);
|
||||
|
||||
if (!window.xe) xe = {};
|
||||
|
||||
xe.Editors = [];
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue