|
|
@@ -41,11 +41,16 @@
|
|
|
});
|
|
|
|
|
|
var pushListInfo = function (pushList) {
|
|
|
+ let orgPushList;
|
|
|
+ //IOS는 앱에서 BASE64로 인코딩 한후 전달 한다.
|
|
|
if (_osType === 'I') {
|
|
|
- alert(pushList);
|
|
|
+ orgPushList = window.atob(pushList);
|
|
|
+ } else if (_osType === 'A') {
|
|
|
+ orgPushList = pushList;
|
|
|
}
|
|
|
- if (!gagajf.isNull(pushList)) {
|
|
|
- let pushListJosn = JSON.parse(pushList);
|
|
|
+
|
|
|
+ if (!gagajf.isNull(orgPushList)) {
|
|
|
+ let pushListJosn = JSON.parse(orgPushList);
|
|
|
let html = '';
|
|
|
$.each(pushListJosn.pushList, function(idx, item) {
|
|
|
html += '<div class="inner">\n';
|