Merge pull request #19262 from eileenmcnaughton/recur_test
[civicrm-core.git] / js / crm.livePage.js
index ca315585097e85dd8c66f5bb1ab143c482983e83..35c8b39312dd7cc3a333c4d5dc255b364798e929 100644 (file)
@@ -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);
 });