Skip to content

Instantly share code, notes, and snippets.

@brandonmwest
Created June 21, 2017 16:21
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
$(function() {
//callback we must supply to the widget to interact with our server-side code
//must take 3 parameters: email, fingerprint, and app_code
//must return a jQuery POST request object
var callback = function(email, fingerprint, kickbox_app_code){
return $.post( "/authenticate", {
email: email,
fingerprint: fingerprint,
kickbox_app_code: kickbox_app_code,
dataType: "json",
});
}
$('.kickbox-form'){ authenticate: callback });
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment