|
|
@@ -1040,20 +1040,28 @@ function cfnUseTermsLayer() {
|
|
|
function cfnPrivacyPolicyLayer(mallGb) {
|
|
|
let str;
|
|
|
if (_frontGb === 'P') {
|
|
|
- str = '<div class="modal fade policiesPrivacy_pop" id="policiesPrivacyPop" tabindex="-1" role="dialog" aria-labelledby="policiesPrivacyLabel" aria-hidden="true"></div>';
|
|
|
+ str = '<div class="modal fade policiesPrivacy_pop" id="policies_privacypop" tabindex="-1" role="dialog" aria-labelledby="policiesPrivacyLabel" aria-hidden="true"></div>';
|
|
|
} else {
|
|
|
- str = '<div class="modal pop_full fade" id="policiesPrivacyPop" tabindex="-1" role="dialog" aria-labelledby="policiesPrivacyLabel" aria-hidden="true"></div>'
|
|
|
+ str = '<div class="modal pop_full fade" id="policies_privacypop" tabindex="-1" role="dialog" aria-labelledby="policiesPrivacyLabel" aria-hidden="true"></div>'
|
|
|
}
|
|
|
- if ($('#policiesPrivacyPop').length == 0) {
|
|
|
+ if ($('#policies_privacypop').length == 0) {
|
|
|
$('body').append(str);
|
|
|
} else {
|
|
|
- $("#policiesPrivacyPop").modal("show");
|
|
|
+ $("#policies_privacypop").modal("show");
|
|
|
}
|
|
|
let params = {}
|
|
|
params.mallGb = mallGb;
|
|
|
- cfnOpenLayer(_PAGE_PRIVACY_POLICY_LAYER, 'policiesPrivacyPop', params);
|
|
|
+ cfnOpenLayer(_PAGE_PRIVACY_POLICY_LAYER, 'policies_privacypop', params);
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * @type : function
|
|
|
+ * @access : public
|
|
|
+ * @desc : 업체리스트
|
|
|
+ * <pre>
|
|
|
+ * cfnSupplyComanyLayer();
|
|
|
+ * </pre>
|
|
|
+ */
|
|
|
function cfnSupplyComanyLayer(mallGb) {
|
|
|
let str;
|
|
|
if (_frontGb === 'P') {
|