CRM-12507
[civicrm-core.git] / templates / CRM / Contribute / Form / SoftCredit.js
CommitLineData
81bc499e
KJ
1// http://civicrm.org/licensing
2cj(function($) {
81bc499e
KJ
3 $('#showPCP, #showSoftCredit').click(function(){
4 return showHideSoftCreditAndPCP();
5 });
6
7 function showHideSoftCreditAndPCP() {
8 $('.crm-contribution-pcp-block').toggle();
9 $('.crm-contribution-pcp-block-link').toggle();
10 $('.crm-contribution-form-block-soft_credit_to').toggle();
11 return false;
12 }
13
65377546
KJ
14 $('#addMoreSoftCredit').click(function(){
15 $('.crm-soft-credit-block tr.hiddenElement :first').show().removeClass('hiddenElement');
16 if ( $('.crm-soft-credit-block tr.hiddenElement').length < 1 ) {
17 $('#addMoreSoftCredit').hide();
18 }
19 return false;
20 });
81bc499e 21
291f6bec
KJ
22 var pcpURL = CRM.url('civicrm/ajax/rest',
23 'className=CRM_Contact_Page_AJAX&fnName=getPCPList&json=1&context=contact&reset=1');
24 $('#pcp_made_through').autocomplete(pcpURL,
25 { width : 360, selectFirst : false, matchContains: true
81bc499e
KJ
26 }).result( function(event, data, formatted) {
27 cj( "#pcp_made_through_id" ).val( data[1] );
291f6bec
KJ
28 });
29});