Skip to content

Instantly share code, notes, and snippets.

@BitPuffin
Last active December 25, 2015 06:59
Show Gist options
  • Save BitPuffin/6936429 to your computer and use it in GitHub Desktop.
Save BitPuffin/6936429 to your computer and use it in GitHub Desktop.
var signinLink = document.getElementById('signin')
var signoutLink = document.getElementById('signout')
if (signinLink) {
signinLink.onclick = function() { alert("Time to sign in!"); navigator.id.request(); }
}
if (signoutLink) {
signoutLink.onclick = function() { navigator.id.logout(); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment