/** * Quirks.js * * Copyright, Moxiecode Systems AB * Released under LGPL License. * * License: http://www.tinymce.com/license * Contributing: http://www.tinymce.com/contributing */ /** * This class contains various fixes for browsers. These issues can not be feature * detected since we have no direct control over the clipboard. However we might be able * to remove some of these fixes once the browsers gets updated/fixed. * * @class tinymce.pasteplugin.Quirks * @private */ define("tinymce/pasteplugin/Quirks", [ "tinymce/Env", "tinymce/util/Tools" ], function(Env, Tools) { "use strict"; return function(editor) { var explorerBlocksRegExp; function addPreProcessFilter(filterFunc) { editor.on('PastePreProcess', function(e) { e.content = filterFunc(e.content); }); } function process(content, items) { Tools.each(items, function(v) { if (v.constructor == RegExp) { content = content.replace(v, ''); } else { content = content.replace(v[0], v[1]); } }); return content; } /** * Removes WebKit fragment comments and converted-space spans. * * This: * a b * * Becomes: * a b */ function removeWebKitFragments(html) { html = process(html, [ /^[\s\S]*|[\s\S]*$/g, // WebKit fragment [/\u00a0<\/span>/g, '\u00a0'], // WebKit   /
$/ // Traling BR elements ]); return html; } /** * Removes BR elements after block elements. IE9 has a nasty bug where it puts a BR element after each * block element when pasting from word. This removes those elements. * * This: *

a


b

* * Becomes: *

a

b

*/ function removeExplorerBrElementsAfterBlocks(html) { // Produce block regexp based on the block elements in schema if (!explorerBlocksRegExp) { var blockElements = []; Tools.each(editor.schema.getBlockElements(), function(block, blockName) { blockElements.push(blockName); }); explorerBlocksRegExp = new RegExp( '(?:
 [\\s\\r\\n]+|
)*(<\\/?(' + blockElements.join('|') + ')[^>]*>)(?:
 [\\s\\r\\n]+|
)*', 'g' ); } // Remove BR:s from: X
html = process(html, [ [explorerBlocksRegExp, '$1'] ]); // IE9 also adds an extra BR element for each soft-linefeed and it also adds a BR for each word wrap break html = process(html, [ [/

/g, '

'], // Replace multiple BR elements with uppercase BR to keep them intact [/
/g, ' '], // Replace single br elements with space since they are word wrap BR:s [/

/g, '
'] // Replace back the double brs but into a single BR ]); return html; } // Sniff browsers and apply fixes since we can't feature detect if (Env.webkit) { addPreProcessFilter(removeWebKitFragments); } if (Env.ie) { addPreProcessFilter(removeExplorerBrElementsAfterBlocks); } }; });