From bdc1f585eb196e526b291aad85e663945c3bffcf Mon Sep 17 00:00:00 2001 From: akasima Date: Thu, 8 May 2014 11:30:26 +0900 Subject: [PATCH] =?UTF-8?q?#652=20=EC=9D=B4=EB=AF=B8=EC=A7=80=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80=EC=8B=9C=20ie=20=EB=B8=8C=EB=9D=BC=EC=9A=B0=EC=A0=B8?= =?UTF-8?q?=EC=97=90=EC=84=9C=20jquery=20=EA=B4=80=EB=A0=A8=20=EB=AC=B8?= =?UTF-8?q?=EC=A0=9C=20=EC=B2=98=EB=A6=AC,=20jquery=202.x=20ie=20=EC=A7=80?= =?UTF-8?q?=EC=9B=90=20=EB=AC=B8=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/editor/components/image_link/tpl/popup.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/editor/components/image_link/tpl/popup.js b/modules/editor/components/image_link/tpl/popup.js index 7de60338c..58b13b6cc 100644 --- a/modules/editor/components/image_link/tpl/popup.js +++ b/modules/editor/components/image_link/tpl/popup.js @@ -24,8 +24,8 @@ var align = (node.style.cssFloat) ? node.style.cssFloat : node.style.styleFloat; var margin = (node.style.margin) ? node.style.margin.match('[0-9]+') : node.getAttribute('margin'); var alt = node.getAttribute('alt'); - var width = $(node).width(); - var height = $(node).height(); + var width = node.getAttribute('width'); + var height = node.getAttribute('height'); var link_url = node.getAttribute('link_url'); var open_window = node.getAttribute('open_window');