-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaxboot.config.js
44 lines (42 loc) · 1.21 KB
/
axboot.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
(function () {
if (axboot && axboot.def) {
axboot.def["API"] = {
"users": "/api/v1/users",
"commonCodes": "/api/v1/commonCodes",
"programs": "/api/v1/programs",
"menu": "/api/v2/menu",
"manual": "/api/v1/manual",
"errorLogs": "/api/v1/errorLogs",
"files": "/api/v1/files",
"samples": "/api/v1/samples"
};
axboot.def["MODAL"] = {
"ZIPCODE": {
width: 500,
height: 500,
iframe: {
url: "/admin/common/zipcode"
},
header: {
title: "우편번호 찾기"
}
},
"SAMPLE-MODAL": {
width: 500,
height: 500,
iframe: {
url: "/admin/_samples/modal"
},
header: false
},
"COMMON_CODE_MODAL": {
width: 600,
height: 400,
iframe: {
url: "/jsp/system/system-config-common-code-modal.jsp"
},
header: false
}
};
}
})();