From 737858ef5577a4f95fb965ec3a7be84e5a7c4dd2 Mon Sep 17 00:00:00 2001 From: taggon Date: Tue, 2 Feb 2010 04:12:04 +0000 Subject: [PATCH] =?UTF-8?q?#18665855=20-=20ie=EC=97=90=20=EA=B8=80=20?= =?UTF-8?q?=EC=9E=91=EC=84=B1=EC=8B=9C=20jQueryxxxxx=20=EC=99=80=20?= =?UTF-8?q?=EA=B0=99=EC=9D=80=20=EC=86=8D=EC=84=B1=EC=9D=B4=20=EB=B6=99?= =?UTF-8?q?=EB=8A=94=20=EB=B2=84=EA=B7=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7267 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- modules/editor/skins/xpresseditor/js/Xpress_Editor.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/editor/skins/xpresseditor/js/Xpress_Editor.js b/modules/editor/skins/xpresseditor/js/Xpress_Editor.js index 2896b4dbd..21bb2f456 100644 --- a/modules/editor/skins/xpresseditor/js/Xpress_Editor.js +++ b/modules/editor/skins/xpresseditor/js/Xpress_Editor.js @@ -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){