Javascript function callback e.g "_loggedInCallback()"
Used by
$pinc.ui.auth
What does it do?
The attribute definition calls a globally accessible JavaScript function.
Example
HTML
JS
123<head>4<script>5function_loggedInCallback(){6//do something now that your user is logged in7 console.log($pinc.auth.profile)8}910</script>11<scriptsrc="https://labs.pathfix.com/helper.js"12data-on-logged-in="_loggedInCallback()"13></script>14</head>