Cloudsponge Widget Reference - The beforeDisplayContacts callback
<!DOCTYPE html> | |
<html> | |
<head> | |
<!-- | |
Include the script anywhere on your page, usually in the head | |
(don't forget to replace `localhost-only` with your own CloudSponge Widget Key) | |
--> | |
<script src="https://api.cloudsponge.com/widget/localhost-only.js"></script> | |
<script> | |
// variable to hold the complete address book returned from api.cloudsponge.com | |
var complete_address_book; | |
// extra widget options go here: | |
cloudsponge.init({ | |
beforeDisplayContacts:function(contacts, source, owner) { | |
// do something with the contacts array | |
complete_address_book = contacts; | |
// return false if you don't want to display the 'choose your contacts UI' | |
return false; // the widget will now close.. | |
} | |
}); | |
</script> | |
</head> | |
<body> | |
<a class="cloudsponge-launch">Add from Address Book</a> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment