Merge pull request #4677 from colemanw/CRM-15495
[civicrm-core.git] / js / crm.drupal.js
index fc0411aed2a3b2e496e8278a1f7cbcd2c7604cb0..4c1849cbc077f98e2750771734a61d1d3a7b2b1a 100644 (file)
@@ -6,7 +6,10 @@ CRM.$(function($) {
       Drupal.attachBehaviors(e.target);
     })
     .on('crmUnload', function(e) {
-      Drupal.detachBehaviors(e.target);
+      // This function doesn't exist in D6 so call conditionally
+      if (typeof Drupal.detachBehaviors === 'function') {
+        Drupal.detachBehaviors(e.target);
+      }
     })
     .on('dialogopen', function(e) {
       // D7 hack to get the toolbar out of the way (CRM-15341)