CRM-19179: Fix undefined event issue in Firefox
authorJKingsnorth <john@johnkingsnorth.co.uk>
Fri, 2 Sep 2016 08:09:32 +0000 (09:09 +0100)
committerJKingsnorth <john@johnkingsnorth.co.uk>
Fri, 2 Sep 2016 08:09:32 +0000 (09:09 +0100)
templates/CRM/Contact/Form/Merge.tpl

index e3f67197b4eda73694e7a683b8526bb5849be98d..aa1fdf3a73573ffa9a1532fcaa6008747b1a91e8 100644 (file)
    * @param blockName string
    *   The name of the entity.
    * @param blockId int
-   *   The block ID being affected
+   *   The block ID being affected.
+   * @param event object
+   *   The event that triggered the update.
    */
-  function updateMainLocationBlock(blockName, blockId) {
+  function updateMainLocationBlock(blockName, blockId, event) {
 
     // Get type of select list that's been changed (location or type)
     var locTypeId = CRM.$('select#location_blocks_' + blockName + '_' + blockId + '_locTypeId').val();
    * Called when a 'set primary' checkbox is clicked in order to disable any
    * other 'set primary' checkboxes for blocks of the same entity. So don't let
    * users try to set two different phone numbers as primary on the form.
+   *
+   * @param event object
+   *   The event that triggered the update
    */
-  function updateSetPrimaries() {
+  function updateSetPrimaries(event) {
     var nameSplit = event.target.name.split('[');
     var blockName = nameSplit[1].slice(0, -1);
     var controls = CRM.$('span.location_block_controls[id^="main_' + blockName + '"]');
     });
 
     // Call mergeBlock whenever a location type is changed
-    $('body').on('change', 'select[id$="locTypeId"],select[id$="typeTypeId"],input[id$="[operation]"],input[id$="[set_other_primary]"]', function(){
+    $('body').on('change', 'select[id$="locTypeId"],select[id$="typeTypeId"],input[id$="[operation]"],input[id$="[set_other_primary]"]', function(event){
 
       // All the information we need is held in the id, separated by underscores
       var nameSplit = this.name.split('[');
 
       // Lookup the main value, if any are available
       if (allBlock[nameSplit[1].slice(0, -1)] != undefined) {
-        updateMainLocationBlock(nameSplit[1].slice(0, -1), nameSplit[2].slice(0, -1));
+        updateMainLocationBlock(nameSplit[1].slice(0, -1), nameSplit[2].slice(0, -1), event);
       }
 
       // Update all 'set primary' checkboxes
-      updateSetPrimaries();
+      updateSetPrimaries(event);
 
     });