12345678910111213141516171819202122232425 |
- (function($) {
- /**
- * Attach this editor to a target element.
- */
- Drupal.wysiwyg.editor.attach.jwysiwyg = function(context, params, settings) {
- // Attach editor.
- $('#' + params.field).wysiwyg();
- };
- /**
- * Detach a single or all editors.
- */
- Drupal.wysiwyg.editor.detach.jwysiwyg = function(context, params) {
- var $field = $('#' + params.field);
- var editor = $field.data('wysiwyg');
- if (typeof editor != 'undefined') {
- editor.saveContent();
- editor.element.remove();
- }
- $field.removeData('wysiwyg');
- $field.show();
- };
- })(jQuery);
|