X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=js%2Fcrm.livePage.js;h=35c8b39312dd7cc3a333c4d5dc255b364798e929;hb=9ac4f6998bc411f30a94d7764140f6bcd7decaf7;hp=ca315585097e85dd8c66f5bb1ab143c482983e83;hpb=7ad264e75f69ab08f1a101e6237ff4d2b7d514e4;p=civicrm-core.git diff --git a/js/crm.livePage.js b/js/crm.livePage.js index ca31558509..35c8b39312 100644 --- a/js/crm.livePage.js +++ b/js/crm.livePage.js @@ -1,14 +1,12 @@ // http://civicrm.org/licensing // Adds ajaxy behavior to a simple CiviCRM page -cj(function($) { +CRM.$(function($) { + var active = 'a.button, a.action-item:not(.crm-enable-disable), a.crm-popup'; $('#crm-main-content-wrapper') // Widgetize the content area .crmSnippet() // Open action links in a popup .off('.crmLivePage') - .on('click.crmLivePage', 'a.button, a.action-item', CRM.popup) - .on('crmPopupFormSuccess.crmLivePage', 'a.button, a.action-item', function() { - // Refresh page when form completes - $('#crm-main-content-wrapper').crmSnippet('refresh'); - }); + .on('click.crmLivePage', active, CRM.popup) + .on('crmPopupFormSuccess.crmLivePage', active, CRM.refreshParent); });