17 lines
368 B
PHP
17 lines
368 B
PHP
<!doctype html>
|
|
<html lang="ko">
|
|
<head><meta charset="utf-8"></head>
|
|
<body>
|
|
<script>
|
|
try {
|
|
window.parent && window.parent.postMessage({
|
|
type: 'danal_result',
|
|
ok: {{ $ok ? 'true' : 'false' }},
|
|
message: @json($message),
|
|
redirect: @json($redirect),
|
|
}, '*');
|
|
} catch (e) {}
|
|
</script>
|
|
</body>
|
|
</html>
|