aboutsummaryrefslogtreecommitdiff
path: root/views/global/footer.php
blob: 22c4631e0894695ba05affa083c3013b789286fc (plain) (blame)
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>