| 1 |
jQuery(document).ready(function($) { |
| 2 |
$(document).on("click",".card-update",function(e) { |
| 3 |
zeusToken.getToken(function(zeus_token_response_data) { |
| 4 |
if( !zeus_token_response_data['result'] ) { |
| 5 |
alert(zeusToken.getErrorMessage(zeus_token_response_data['error_code'])); |
| 6 |
e.preventDefault(); |
| 7 |
e.stopPropagation(); |
| 8 |
return false; |
| 9 |
} else { |
| 10 |
$("#member-card-info").submit(); |
| 11 |
}; |
| 12 |
}); |
| 13 |
}); |
| 14 |
}); |
| 15 |
|