|
|
@@ -669,6 +669,29 @@ function cfPlanReplyDetail(planSq, planEntrySq, planEntryAtSq, attachSq) {
|
|
|
cfnOpenLayer(_PAGE_PLANNING_REPLY_DETAIL_LAYER+params, 'photo_full_popup');
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+* @type : function
|
|
|
+* @access : public
|
|
|
+* @desc : 댓글 이미지 팝업(모바일)
|
|
|
+* <pre>
|
|
|
+* cfMoPlanReplyDetail(planSq, planEntrySq, planEntryAtSq, attachSq);
|
|
|
+* </pre>
|
|
|
+*/
|
|
|
+function cfMoPlanReplyDetail(planSq, planEntrySq, planEntryAtSq, attachSq) {
|
|
|
+ var str = '<div class="modal fade thumb_img_pop" id="thumbImgPop" tabindex="-1" role="dialog" aria-labelledby="thumbImgLabel" aria-hidden="true"></div>';
|
|
|
+
|
|
|
+ if ($('#thumbImgPop').length == 0) {
|
|
|
+ $('body').append(str);
|
|
|
+ }
|
|
|
+
|
|
|
+ var params = '?planSq=' + planSq;
|
|
|
+ params += '&planEntrySq=' + planEntrySq;
|
|
|
+ if (typeof (planEntryAtSq) != 'undefined') params += "&planEntryAtSq=" + planEntryAtSq;
|
|
|
+ if (typeof (attachSq) != 'undefined') params += "&attachSq=" + attachSq;
|
|
|
+
|
|
|
+ cfnOpenLayer(_PAGE_PLANNING_REPLY_DETAIL_LAYER+params, 'thumbImgPop');
|
|
|
+}
|
|
|
+
|
|
|
/**
|
|
|
* @type : function
|
|
|
* @access : public
|