houdini/app/javascript/legacy/nonprofits/donate/plugins-available/default-recurring.js
2020-04-23 14:09:14 -05:00

9 lines
418 B
JavaScript

// License: LGPL-3.0-or-later
// This plugin allows to simplify the form (remove phone, address and city fields) if the url query has "minimal"
jQuery(function($){
$(".donationWizard").on("render:post", function(){
if (app.params$().default !== "recurring") return;
$("#checkbox-recurring").prop("checked",true);
document.getElementById("checkbox-recurring").dispatchEvent(new Event('change'));
});
})