1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
</article> </body> <script type="text/javascript"> function eval_callbacks() { if (authentication_response === null) { setTimeout(eval_callbacks, 50); } else if (authentication_response !== "") { for (callback of authentication_callbacks) { callback(authentication_response); } } } eval_callbacks(); </script> </html>