Merge branch '4.4' into master
[civicrm-core.git] / js / crm.searchForm.js
index 181a204549dd1a4ae7f7670c8630a50104d7302b..7e3a53b22bddf5addca734236ebec2bababb3fb2 100644 (file)
@@ -1,25 +1,4 @@
 // http://civicrm.org/licensing
-// Controls search form action links and refreshes
-cj(function($) {
-  $('#crm-main-content-wrapper').crmSnippet();
-  if (CRM.config.ajax_popups_enabled) {
-    $('#crm-main-content-wrapper')
-      // Open action links in a popup
-      .off('click.crmLivePage')
-      .on('click.crmLivePage', 'a.button, a.action-item', function () {
-        var url = $(this).attr('href');
-        // only follow real links not javascript buttons
-        if (url === '#' || $(this).attr('onclick') || $(this).hasClass('no-popup')) {
-          return;
-        }
-        CRM.loadForm(url).on('crmFormSuccess', function (e, data) {
-          // Refresh page when form completes
-          $('#crm-main-content-wrapper').crmSnippet('refresh');
-        });
-        return false;
-      });
-  }
-});
 
 function countSelectedCheckboxes(fldPrefix, form) {
   fieldCount = 0;