(function ( $ ) { $.fn.richText = function( options ) { // set default options // and merge them with the parameter options var settings = $.extend({ //id //id: "", // text formatting bold: true, italic: true, underline: true, // text alignment leftAlign: true, centerAlign: true, rightAlign: true, justify: true, // lists ol: true, ul: true, // title heading: false, // fonts fonts: false, fontList: ["Arial", "Arial Black", "Comic Sans MS", "Courier New", "Geneva", "Georgia", "Helvetica", "Impact", "Lucida Console", "Tahoma", "Times New Roman", "Verdana" ], fontColor: false, fontSize: false, // uploads imageUpload: false, fileUpload: false, // media videoEmbed: false, // link urls: false, // tables table: false, // code removeStyles: false, code: false, // colors colors: [], // dropdowns fileHTML: '', imageHTML: '', // translations translations: { 'title': 'Título', 'white': 'Blanco', 'black': 'Negro', 'brown': 'Café', 'beige': 'Beige', 'darkBlue': 'Azul Marino', 'blue': 'Azul', 'lightBlue': 'Azul Claro', 'darkRed': 'Rojo Obscuro', 'red': 'Rojo', 'darkGreen': 'Verde Obscuro', 'green': 'Verde', 'purple': 'Morado', 'darkTurquois': 'Turquesa Obscuro', 'turquois': 'Turquesa', 'darkOrange': 'naranja Obscuro', 'orange': 'Naranja', 'yellow': 'Amarillo', 'imageURL': 'URL Imagen', 'fileURL': 'URL Archivo', 'linkText': 'Hipervínculo', 'url': 'URL', 'size': 'Tamaño', 'responsive': 'Responsivo', 'text': 'Texto', 'openIn': 'Abrir en', 'sameTab': 'Misma página', 'newTab': 'Nueva Página', 'align': 'Alinear', 'left': 'Izquierda', 'justify': 'Justificado', 'center': 'Centrado', 'right': 'Derecha', 'rows': 'Renglones', 'columns': 'Columnas', 'add': 'Agregar', 'pleaseEnterURL': 'Ingresa una URL', 'videoURLnotSupported': 'URL de video no soportado', 'pleaseSelectImage': 'Seleccione una imagen', 'pleaseSelectFile': 'Seleccione un archivo', 'bold': 'Negrita', 'italic': 'Cursiva', 'underline': 'Subrayado', 'alignLeft': 'Alinear a la izquierda', 'alignCenter': 'Alinear centrado', 'alignRight': 'Alinear a la derecha', 'addOrderedList': 'Numeración', 'addUnorderedList': 'Viñetas', 'addHeading': 'Títulos', 'addFont': 'Cambiar fuente', 'addFontColor': 'Cambiar color de fuente', 'addFontSize' : 'Cambiar tamaño de fuente', 'addImage': 'Agregar imagen', 'addVideo': 'Agregar video', 'addFile': 'Agregar archivo', 'addURL': 'Vínculo', 'addTable': 'Tabla', 'removeStyles': 'Remover estilos', 'code': 'Mostrar código', 'undo': 'Deshacer', 'redo': 'Repetir', 'close': 'Cerrar' }, // privacy youtubeCookies: false, // dev settings useSingleQuotes: false, height: 0, heightPercentage: 0, id: "", class: "", useParagraph: false }, options ); /* prepare toolbar */ var $inputElement = $(this); $inputElement.addClass("richText-initial"); var $editor, $toolbarList = $('