|
@@ -91,22 +91,22 @@
|
|
|
history.go(1);
|
|
|
};
|
|
|
|
|
|
- let passData = { returnValue : 200 };
|
|
|
- window.parent.postMessage(passData, 'http://localhost:8000');
|
|
|
+ // let passData = { returnValue : 200 };
|
|
|
+ // window.parent.postMessage(passData, 'http://localhost:8000');
|
|
|
}
|
|
|
|
|
|
- window.addEventListener('message', function(e) {
|
|
|
- //e.data ==> 수신 받은 데이터
|
|
|
- //e.origin ==> 허용된 도메인
|
|
|
- const req = JSON.parse(decoding(e.data))
|
|
|
- console.log(req)
|
|
|
- console.log(JSON.parse(decoding(req['PrintingJson'])))
|
|
|
- });
|
|
|
+ // window.addEventListener('message', function(e) {
|
|
|
+ // //e.data ==> 수신 받은 데이터
|
|
|
+ // //e.origin ==> 허용된 도메인
|
|
|
+ // const req = JSON.parse(decoding(e.data))
|
|
|
+ // console.log(req)
|
|
|
+ // console.log(JSON.parse(decoding(req['PrintingJson'])))
|
|
|
+ // });
|
|
|
|
|
|
- function decoding(encoded){
|
|
|
- //base64 decrypt
|
|
|
- var parsedWordArray = CryptoJS.enc.Base64.parse(encoded);
|
|
|
- var decoded = parsedWordArray.toString(CryptoJS.enc.Utf8);
|
|
|
- return decoded;
|
|
|
- }
|
|
|
+ // function decoding(encoded){
|
|
|
+ // //base64 decrypt
|
|
|
+ // var parsedWordArray = CryptoJS.enc.Base64.parse(encoded);
|
|
|
+ // var decoded = parsedWordArray.toString(CryptoJS.enc.Utf8);
|
|
|
+ // return decoded;
|
|
|
+ // }
|
|
|
</script>
|