PHP Classes

File: CMF/Web/scripts/tinymce/plugins/lineheight/plugin.js

Recommend this page to a friend!
  Classes of Burge Lab   BurgeATS   CMF/Web/scripts/tinymce/plugins/lineheight/plugin.js   Download  
File: CMF/Web/scripts/tinymce/plugins/lineheight/plugin.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: BurgeATS
CRM, Ticketing system, and employee manangement
Author: By
Last change: Update of CMF/Web/scripts/tinymce/plugins/lineheight/plugin.js
Date: 1 year ago
Size: 2,733 bytes
 

Contents

Class file image Download
(function (tinymce) { tinymce.PluginManager.add('lineheight', function (editor, url, $) { editor.on('init', function () { editor.formatter.register({ lineheight: {inline: 'span', styles: {'line-height': '%value'}} }); }); editor.addButton('lineheightselect', function() { var items = [], defaultLineHeightFormats = '8pt 10pt 12pt 14pt 18pt 24pt 36pt'; var lineheight_formats = editor.settings.lineheight_formats || defaultLineHeightFormats; lineheight_formats.split(' ').forEach(function(item) { var text = item, value = item; // Allow text=value for line-height formats var values = item.split('='); if (values.length > 1) { text = values[0]; value = values[1]; } items.push({text: text, value: value}); }); return { type: 'listbox', text: 'Line Height', tooltip: 'Line Height', values: items, fixedWidth: true, onPostRender: function() { var self = this; editor.on('nodeChange', function(e) { var formatName = 'lineheight'; var formatter = editor.formatter; var value = null; e.parents.forEach(function(node) { items.forEach(function(item) { if (formatName) { if (formatter.matchNode(node, formatName, {value: item.value})) { value = item.value; } } else { if (formatter.matchNode(node, item.value)) { value = item.value; } } if (value) { return false; } }); if (value) { return false; } }); self.value(value); }); }, onselect: function(e) { tinymce.activeEditor.formatter.apply('lineheight', {value : this.value()}); } }; }); }); tinymce.PluginManager.requireLangPack('lineheight', 'de'); })(tinymce);