Created
September 29, 2016 06:52
-
-
Save janisblaus/5b7283e00123020fefd84485736bad13 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var identifier = itor.get_request_identifier(); | |
itor.on_request_identifier_change(changeIdentifier); | |
function changeIdentifier() { | |
identifier = itor.get_request_identifier(); | |
} | |
switch(response){ | |
case 'process-finished': | |
/ Process finished successfully. / | |
identifier | |
jQuery.post( | |
'/callback/equifax/', | |
{identifier: identifier , customerId: {{ customer.customer_id }}}, | |
function(data) { | |
}, 'json' | |
) | |
break; | |
}, | |
// ................... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment