diff --git a/js/iteminfoimageresize.js b/js/iteminfoimageresize.js
new file mode 100644
index 000000000..4d15c89ec
--- /dev/null
+++ b/js/iteminfoimageresize.js
@@ -0,0 +1,44 @@
+(function($) {
+ $.fn.iteminfoimageresize = function(selector)
+ {
+ var cfg = {
+ selector: "img"
+ };
+
+ if(typeof selector == "object") {
+ cfg = $.extend(cfg, selector);
+ } else {
+ if(selector) {
+ cfg = $.extend({ selector: selector });
+ }
+ }
+
+ var $img = this.find(cfg.selector);
+ var $this = this;
+
+ function image_resize()
+ {
+ var width = $this.width();
+
+ $img.each(function() {
+ $(this).removeAttr("width")
+ .removeAttr("height")
+ .css("width","")
+ .css("height", "");
+
+ if($(this).data("width") == undefined)
+ $(this).data("width", $(this).width());
+
+ if($(this).data("width") > width) {
+ $(this).css("width", "100%");
+ }
+ });
+ }
+
+ $(window).on("resize", function() {
+ image_resize();
+ });
+
+ image_resize();
+ }
+}(jQuery));
\ No newline at end of file
diff --git a/mobile/skin/shop/basic/itemqa.skin.php b/mobile/skin/shop/basic/itemqa.skin.php
index a4f8859a4..c48fbe95d 100644
--- a/mobile/skin/shop/basic/itemqa.skin.php
+++ b/mobile/skin/shop/basic/itemqa.skin.php
@@ -3,6 +3,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
?>
+
@@ -110,7 +111,12 @@ $(function(){
$con.slideUp();
} else {
$(".sit_qa_con:visible").hide();
- $con.slideDown();
+ $con.slideDown(
+ function() {
+ // 이미지 리사이즈
+ $con.iteminfoimageresize();
+ }
+ );
}
});
diff --git a/mobile/skin/shop/basic/itemqalist.skin.php b/mobile/skin/shop/basic/itemqalist.skin.php
index 824f23d1d..37d87b827 100644
--- a/mobile/skin/shop/basic/itemqalist.skin.php
+++ b/mobile/skin/shop/basic/itemqalist.skin.php
@@ -3,6 +3,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
+