Index: wysiwyg.js =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/wysiwyg/wysiwyg.js,v retrieving revision 1.19 diff -u -p -r1.19 wysiwyg.js --- wysiwyg.js 25 Sep 2010 00:46:33 -0000 1.19 +++ wysiwyg.js 23 Oct 2010 17:52:14 -0000 @@ -46,7 +46,7 @@ Drupal.behaviors.attachWysiwyg = { } $('.wysiwyg', context).once('wysiwyg', function() { - if (!this.id || !this.value || typeof Drupal.settings.wysiwyg.triggers[this.id] === 'undefined') { + if (!this.id || typeof Drupal.settings.wysiwyg.triggers[this.id] === 'undefined') { return; } var $this = $(this); Index: wysiwyg.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/wysiwyg/wysiwyg.module,v retrieving revision 1.46 diff -u -p -r1.46 wysiwyg.module --- wysiwyg.module 18 Oct 2010 21:57:48 -0000 1.46 +++ wysiwyg.module 23 Oct 2010 17:52:14 -0000 @@ -164,9 +164,8 @@ function wysiwyg_pre_render_text_format( $format_field['guidelines']['format'] = array( '#type' => 'hidden', '#name' => $format_field['format']['#name'], - '#id' => $format_field['format']['#id'], '#value' => $format_id, - '#attributes' => array('class' => array('wysiwyg')), + '#attributes' => array('class' => array('wysiwyg'), 'id' => $format_field['format']['#id']), ); $format_field['guidelines']['format']['#attached']['js'][] = array( 'data' => array('wysiwyg' => array('triggers' => array($format_field['format']['#id'] => $settings))),