모바일 상품정보에서 부모창 url 변경 코드 수정

This commit is contained in:
chicpro
2013-11-07 14:19:49 +09:00
parent 5eb054b5b5
commit 0ed8745eff
3 changed files with 6 additions and 3 deletions

View File

@ -22,8 +22,9 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
<script> <script>
$(function() { $(function() {
$("a.sct_a").on("click", function() { $("a.sct_a").on("click", function() {
opener.location.href = this.href; window.opener.location.href = this.href;
self.close(); self.close();
return false;
}); });
}); });
</script> </script>

View File

@ -126,8 +126,9 @@ $(function(){
}); });
$("a#itemqa_list").on("click", function() { $("a#itemqa_list").on("click", function() {
opener.location.href = this.href; window.opener.location.href = this.href;
self.close(); self.close();
return false;
}); });
}); });
</script> </script>

View File

@ -106,8 +106,9 @@ $(function(){
}); });
$("a#itemuse_list").on("click", function() { $("a#itemuse_list").on("click", function() {
opener.location.href = this.href; window.opener.location.href = this.href;
self.close(); self.close();
return false;
}); });
}); });
</script> </script>