? autogrow-2.patch
? autogrow-test.patch
? autogrow.patch
? cso-898246-hooks-2.patch
? cso-898246-hooks.patch
? cso-986138-jsfix-2.patch
? cso-986138-jsfix.patch
Index: cck_select_other.js
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/cck_select_other/Attic/cck_select_other.js,v
retrieving revision 1.1.2.6
diff -u -p -r1.1.2.6 cck_select_other.js
--- cck_select_other.js	12 Jul 2010 19:25:34 -0000	1.1.2.6
+++ cck_select_other.js	21 Dec 2010 20:49:31 -0000
@@ -8,11 +8,6 @@ var cckSelectOther = {};
 
 Drupal.behaviors.cckSelectOther = function (context) {
 
-//  $.browser.msie == true ? $(this).click(Drupal.ConditionalFields.fieldChange) : $(this).change(Drupal.ConditionalFields.fieldChange); 
-
-  $.browser.msie == true ? $(this).click(cckSelectOther.switchField) : $(this).change(cckSelectOther.switchField);
-
-//  document.write(Drupal.settings.CCKSelectOther.field.length);
   var field_str = new String(Drupal.settings.CCKSelectOther.field);
   var fields = new Array();
   fields = field_str.split(',');
@@ -28,6 +23,8 @@ Drupal.behaviors.cckSelectOther = functi
 
     // if value == other then display as block else don't display
     $('#' + inputId).css('display', (value == "other") ? 'block' : 'none');
+
+    $.browser.msie == true ? $('#' + selectId).click(cckSelectOther.switchField) : $(this).change(cckSelectOther.switchField);
   }
 
 }
