Index: base3.10/src/main/webapp/js/user/designJS.js
===================================================================
--- base3.10/src/main/webapp/js/user/designJS.js (revision 137)
+++ base3.10/src/main/webapp/js/user/designJS.js (revision 138)
@@ -22,7 +22,9 @@
'bgImg' : function() {
$(".bg_box").each(function(){
var bg_box = $(this).children("img").attr("src");
- $(this).css({backgroundImage: "url(" + bg_box + ")"});
+ if (bg_box != null) {
+ $(this).css({backgroundImage: "url(" + bg_box + ")"});
+ }
});
},
//버튼 배경 이미지 넣기
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?