mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-25 14:19:58 +09:00
#18665855 - ie에 글 작성시 jQueryxxxxx 와 같은 속성이 붙는 버그 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7267 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
7ca7d1a732
commit
737858ef55
1 changed files with 2 additions and 2 deletions
|
|
@ -5442,7 +5442,7 @@ var
|
|||
regex_font_weight = /font-weight\s*:\s*([a-z]+);?/i,
|
||||
regex_font_style = /font-style\s*:\s*italic;?/i,
|
||||
regex_font_decoration = /text-decoration\s*:\s*([a-z -]+);?/i,
|
||||
regex_$ = /$\d+\s*=(\s*"\d+"|\d+)/ig,
|
||||
regex_jquery = /jQuery\d+\s*=(\s*"\d+"|\d+)/ig,
|
||||
regex_quote_attr = /([\w-]+\s*=(?:\s*"[^"]+"|\s*'[^']+'))|([\w-]+)=([^\s]+)/g; //"
|
||||
|
||||
var
|
||||
|
|
@ -5505,7 +5505,7 @@ xe.XE_XHTMLFormatter = $.Class({
|
|||
|
||||
if ($.browser.msie) {
|
||||
// remove $ attributes
|
||||
sContent = sContent.replace(regex_$, '');
|
||||
sContent = sContent.replace(regex_jquery, '');
|
||||
|
||||
// quote all attrs
|
||||
sContent = sContent.replace(/<(\w+) ([^>]+)>/g, function(m0,m1,m2){
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue