deactivate_profile.js 583 Bytes
function show_reason_fields(event){
  event.preventDefault();
	jQuery(".deactivate-profile").show();
  jQuery(".deactivate-profile").switchClass("hidden", "show");
}

function hide_reason_fields(event){
  event.preventDefault();
  jQuery(".deactivate-profile").hide();
  jQuery(".deactivate-profile").switchClass("show", "hidden");
}

jQuery(document).ready(function(){
  jQuery("#deactivate_profile_button").click(show_reason_fields);
  jQuery("#cancel_deactivation_button").click(hide_reason_fields);
  // jQuery("#confirm_deactivation_button").click(call_deactivate_profile);
});