diff options
Diffstat (limited to 'views/global/footer.php')
| -rw-r--r-- | views/global/footer.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/views/global/footer.php b/views/global/footer.php new file mode 100644 index 0000000..22c4631 --- /dev/null +++ b/views/global/footer.php @@ -0,0 +1,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> |
