Mercurial > hg > rr-repo
diff sites/all/modules/wysiwyg/editors/js/fckeditor.config.js @ 0:ff03f76ab3fe
initial version
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Wed, 21 Aug 2013 18:51:11 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sites/all/modules/wysiwyg/editors/js/fckeditor.config.js Wed Aug 21 18:51:11 2013 +0100 @@ -0,0 +1,86 @@ + +Drupal = window.parent.Drupal; + +/** + * Fetch and provide original editor settings as local variable. + * + * FCKeditor does not support to pass complex variable types to the editor. + * Instance settings passed to FCKinstance.Config are temporarily stored in + * FCKConfig.PageConfig. + */ +var wysiwygFormat = FCKConfig.PageConfig.wysiwygFormat; +var wysiwygSettings = Drupal.settings.wysiwyg.configs.fckeditor[wysiwygFormat]; +var pluginSettings = (Drupal.settings.wysiwyg.plugins[wysiwygFormat] ? Drupal.settings.wysiwyg.plugins[wysiwygFormat] : { 'native': {}, 'drupal': {} }); + +/** + * Apply format-specific settings. + */ +for (var setting in wysiwygSettings) { + if (setting == 'buttons') { + // Apply custom Wysiwyg toolbar for this format. + // FCKConfig.ToolbarSets['Wysiwyg'] = wysiwygSettings.buttons; + + // Temporarily stack buttons into multiple button groups and remove + // separators until #277954 is solved. + FCKConfig.ToolbarSets['Wysiwyg'] = []; + for (var i = 0; i < wysiwygSettings.buttons[0].length; i++) { + FCKConfig.ToolbarSets['Wysiwyg'].push([wysiwygSettings.buttons[0][i]]); + } + FCKTools.AppendStyleSheet(document, '#xToolbar .TB_Start { display:none; }'); + // Set valid height of select element in silver and office2003 skins. + if (FCKConfig.SkinPath.match(/\/office2003\/$/)) { + FCKTools.AppendStyleSheet(document, '#xToolbar .SC_FieldCaption { height: 24px; } #xToolbar .TB_End { display: none; }'); + } + else if (FCKConfig.SkinPath.match(/\/silver\/$/)) { + FCKTools.AppendStyleSheet(document, '#xToolbar .SC_FieldCaption { height: 27px; }'); + } + } + else { + FCKConfig[setting] = wysiwygSettings[setting]; + } +} + +// Fix Drupal toolbar obscuring editor toolbar in fullscreen mode. +var oldFitWindowExecute = FCKFitWindow.prototype.Execute; +var $drupalToolbar = window.parent.jQuery('#toolbar', Drupal.overlayChild ? window.parent.window.parent.document : window.parent.document); +FCKFitWindow.prototype.Execute = function() { + oldFitWindowExecute.apply(this, arguments); + if (this.IsMaximized) { + $drupalToolbar.hide(); + } + else { + $drupalToolbar.show(); + } +} + +/** + * Initialize this editor instance. + */ +Drupal.wysiwyg.editor.instance.fckeditor.init(window); + +/** + * Register native plugins for this input format. + * + * Parameters to Plugins.Add are: + * - Plugin name. + * - Languages the plugin is available in. + * - Location of the plugin folder; <plugin_name>/fckplugin.js is appended. + */ +for (var plugin in pluginSettings['native']) { + // Languages and path may be undefined for internal plugins. + FCKConfig.Plugins.Add(plugin, pluginSettings['native'][plugin].languages, pluginSettings['native'][plugin].path); +} + +/** + * Register Drupal plugins for this input format. + * + * Parameters to addPlugin() are: + * - Plugin name. + * - Format specific plugin settings. + * - General plugin settings. + * - A reference to this window so the plugin setup can access FCKConfig. + */ +for (var plugin in pluginSettings.drupal) { + Drupal.wysiwyg.editor.instance.fckeditor.addPlugin(plugin, pluginSettings.drupal[plugin], Drupal.settings.wysiwyg.plugins.drupal[plugin], window); +} +