diff --git a/build/squire-raw.js b/build/squire-raw.js index 0e1a25a..a912c53 100644 --- a/build/squire-raw.js +++ b/build/squire-raw.js @@ -30,17 +30,13 @@ var isIOS = /iP(?:ad|hone|od)/.test( ua ) || ( isMac && !!navigator.maxTouchPoints ); var isGecko = /Gecko\//.test( ua ); -var isIElt11 = /Trident\/[456]\./.test( ua ); -var isPresto = !!win.opera; var isEdge = /Edge\//.test( ua ); var isWebKit = !isEdge && /WebKit\//.test( ua ); var isIE = /Trident\/[4567]\./.test( ua ); var ctrlKey = isMac ? 'meta-' : 'ctrl-'; -var useTextFixer = isIElt11 || isPresto; -var cantFocusEmptyTextNodes = isIElt11 || isWebKit; -var losesSelectionOnBlur = isIElt11; +var cantFocusEmptyTextNodes = isWebKit; var canObserveMutations = typeof MutationObserver !== 'undefined'; var canWeakMap = typeof WeakMap !== 'undefined'; @@ -437,31 +433,10 @@ function fixCursor ( node, root ) { fixer = doc.createTextNode( '' ); } } - } else { - if ( useTextFixer ) { - while ( node.nodeType !== TEXT_NODE && !isLeaf( node ) ) { - child = node.firstChild; - if ( !child ) { - fixer = doc.createTextNode( '' ); - break; - } - node = child; - } - if ( node.nodeType === TEXT_NODE ) { - // Opera will collapse the block element if it contains - // just spaces (but not if it contains no data at all). - if ( /^ +$/.test( node.data ) ) { - node.data = ''; - } - } else if ( isLeaf( node ) ) { - node.parentNode.insertBefore( doc.createTextNode( '' ), node ); - } - } - else if ( !node.querySelector( 'BR' ) ) { - fixer = createElement( doc, 'BR' ); - while ( ( child = node.lastElementChild ) && !isInline( child ) ) { - node = child; - } + } else if ( !node.querySelector( 'BR' ) ) { + fixer = createElement( doc, 'BR' ); + while ( ( child = node.lastElementChild ) && !isInline( child ) ) { + node = child; } } if ( fixer ) { @@ -2568,12 +2543,6 @@ function Squire ( root, config ) { this._isFocused = false; this._lastSelection = null; - // IE loses selection state of iframe on blur, so make sure we - // cache it just before it loses focus. - if ( losesSelectionOnBlur ) { - this.addEventListener( 'beforedeactivate', this.getSelection ); - } - this._hasZWS = false; this._lastAnchorNode = null; @@ -2620,11 +2589,11 @@ function Squire ( root, config ) { // IE sometimes fires the beforepaste event twice; make sure it is not run // again before our after paste function is called. this._awaitingPaste = false; - this.addEventListener( isIElt11 ? 'beforecut' : 'cut', onCut ); + this.addEventListener( 'cut', onCut ); this.addEventListener( 'copy', onCopy ); this.addEventListener( 'keydown', monitorShiftKey ); this.addEventListener( 'keyup', monitorShiftKey ); - this.addEventListener( isIElt11 ? 'beforepaste' : 'paste', onPaste ); + this.addEventListener( 'paste', onPaste ); this.addEventListener( 'drop', onDrop ); this.addEventListener( 'keydown', onKey ); @@ -2634,35 +2603,6 @@ function Squire ( root, config ) { // Override default properties this.setConfig( config ); - // Fix IE<10's buggy implementation of Text#splitText. - // If the split is at the end of the node, it doesn't insert the newly split - // node into the document, and sets its value to undefined rather than ''. - // And even if the split is not at the end, the original node is removed - // from the document and replaced by another, rather than just having its - // data shortened. - // We used to feature test for this, but then found the feature test would - // sometimes pass, but later on the buggy behaviour would still appear. - // I think IE10 does not have the same bug, but it doesn't hurt to replace - // its native fn too and then we don't need yet another UA category. - if ( isIElt11 ) { - win.Text.prototype.splitText = function ( offset ) { - var afterSplit = this.ownerDocument.createTextNode( - this.data.slice( offset ) ), - next = this.nextSibling, - parent = this.parentNode, - toDelete = this.length - offset; - if ( next ) { - parent.insertBefore( afterSplit, next ); - } else { - parent.appendChild( afterSplit ); - } - if ( toDelete ) { - this.deleteData( offset, toDelete ); - } - return afterSplit; - }; - } - root.setAttribute( 'contenteditable', 'true' ); // Remove Firefox's built-in controls @@ -4182,24 +4122,7 @@ proto.getHTML = function ( withBookMark ) { if ( withBookMark && ( range = this.getSelection() ) ) { this._saveRangeToBookmark( range ); } - if ( useTextFixer ) { - root = this._root; - node = root; - while ( node = getNextBlock( node, root ) ) { - if ( !node.textContent && !node.querySelector( 'BR' ) ) { - fixer = this.createElement( 'BR' ); - node.appendChild( fixer ); - brs.push( fixer ); - } - } - } html = this._getHTML().replace( /\u200B/g, '' ); - if ( useTextFixer ) { - l = brs.length; - while ( l-- ) { - detach( brs[l] ); - } - } if ( range ) { this._getRangeAndRemoveBookmark( range ); } diff --git a/build/squire.js b/build/squire.js index 0171841..2cf9f6c 100644 --- a/build/squire.js +++ b/build/squire.js @@ -1 +1 @@ -!function(e,t){"use strict";var n=1,i=3,o=9,r=11,a=1,s="​",d=e.defaultView,l=navigator.userAgent,c=/Android/.test(l),h=/Mac OS X/.test(l),f=/Windows NT/.test(l),u=/iP(?:ad|hone|od)/.test(l)||h&&!!navigator.maxTouchPoints,p=/Gecko\//.test(l),g=/Trident\/[456]\./.test(l),m=!!d.opera,v=/Edge\//.test(l),_=!v&&/WebKit\//.test(l),C=/Trident\/[4567]\./.test(l),N=h?"meta-":"ctrl-",S=g||m,y=g||_,T=g,E="undefined"!=typeof MutationObserver,b="undefined"!=typeof WeakMap,x=/[^ \t\r\n]/,k=Array.prototype.indexOf,L={1:1,2:2,3:4,8:128,9:256,11:1024},B=function(){return!0};function A(e,t,n){this.root=this.currentNode=e,this.nodeType=t,this.filter=n||B}A.prototype.nextNode=function(){for(var e,t=this.currentNode,n=this.root,i=this.nodeType,o=this.filter;;){for(e=t.firstChild;!e&&t&&t!==n;)(e=t.nextSibling)||(t=t.parentNode);if(!e)return null;if(L[e.nodeType]&i&&o(e))return this.currentNode=e,e;t=e}},A.prototype.previousNode=function(){for(var e,t=this.currentNode,n=this.root,i=this.nodeType,o=this.filter;;){if(t===n)return null;if(e=t.previousSibling)for(;t=e.lastChild;)e=t;else e=t.parentNode;if(!e)return null;if(L[e.nodeType]&i&&o(e))return this.currentNode=e,e;t=e}},A.prototype.previousPONode=function(){for(var e,t=this.currentNode,n=this.root,i=this.nodeType,o=this.filter;;){for(e=t.lastChild;!e&&t&&t!==n;)(e=t.previousSibling)||(t=t.parentNode);if(!e)return null;if(L[e.nodeType]&i&&o(e))return this.currentNode=e,e;t=e}};var O=/^(?:#text|A(?:BBR|CRONYM)?|B(?:R|D[IO])?|C(?:ITE|ODE)|D(?:ATA|EL|FN)|EM|FONT|HR|I(?:FRAME|MG|NPUT|NS)?|KBD|Q|R(?:P|T|UBY)|S(?:AMP|MALL|PAN|TR(?:IKE|ONG)|U[BP])?|TIME|U|VAR|WBR)$/,R={BR:1,HR:1,IFRAME:1,IMG:1,INPUT:1};var D=0,P=1,U=2,I=3,w=b?new WeakMap:null;function F(e){return e.nodeType===n&&!!R[e.nodeName]}function M(e){switch(e.nodeType){case i:return P;case n:case r:if(b&&w.has(e))return w.get(e);break;default:return D}var t;return t=function(e,t){for(var n=e.length;n--;)if(!t(e[n]))return!1;return!0}(e.childNodes,H)?O.test(e.nodeName)?P:U:I,b&&w.set(e,t),t}function H(e){return M(e)===P}function W(e){return M(e)===U}function z(e){return M(e)===I}function q(e,t){var n=new A(t,a,W);return n.currentNode=e,n}function K(e,t){return(e=q(e,t).previousNode())!==t?e:null}function G(e,t){return(e=q(e,t).nextNode())!==t?e:null}function Z(e){return!e.textContent&&!e.querySelector("IMG")}function $(e,t){return!F(e)&&e.nodeType===t.nodeType&&e.nodeName===t.nodeName&&"A"!==e.nodeName&&e.className===t.className&&(!e.style&&!t.style||e.style.cssText===t.style.cssText)}function Q(e,t,n){if(e.nodeName!==t)return!1;for(var i in n)if(e.getAttribute(i)!==n[i])return!1;return!0}function j(e,t,n,i){for(;e&&e!==t;){if(Q(e,n,i))return e;e=e.parentNode}return null}function V(e,t){for(;t;){if(t===e)return!0;t=t.parentNode}return!1}function Y(e){var t=e.nodeType;return t===n||t===r?e.childNodes.length:e.length||0}function X(e){var t=e.parentNode;return t&&t.removeChild(e),e}function J(e,t){var n=e.parentNode;n&&n.replaceChild(t,e)}function ee(e){for(var t=e.ownerDocument.createDocumentFragment(),n=e.childNodes,i=n?n.length:0;i--;)t.appendChild(e.firstChild);return t}function te(e,n,i,o){var r,a,s,d,l=e.createElement(n);if(i instanceof Array&&(o=i,i=null),i)for(r in i)(a=i[r])!==t&&l.setAttribute(r,a);if(o)for(s=0,d=o.length;sl?o.startOffset-=1:o.startOffset===l&&(o.startContainer=a,o.startOffset=Y(a))),o.endContainer===t&&(o.endOffset>l?o.endOffset-=1:o.endOffset===l&&(o.endContainer=a,o.endOffset=Y(a))),X(r),r.nodeType===i?a.appendData(r.data):c.push(ee(r));else if(r.nodeType===n){for(s=c.length;s--;)r.appendChild(c.pop());e(r,o)}}(e,o),t.setStart(o.startContainer,o.startOffset),t.setEnd(o.endContainer,o.endOffset)}}function ae(e,t,i,o){for(var r,a,s,d=t;(r=d.parentNode)&&r!==o&&r.nodeType===n&&1===r.childNodes.length;)d=r;X(d),s=e.childNodes.length,(a=e.lastChild)&&"BR"===a.nodeName&&(e.removeChild(a),s-=1),e.appendChild(ee(t)),i.setStart(e,s),i.collapse(!0),re(e,i)}function se(e,t){var n,i,o=e.previousSibling,r=e.firstChild,a=e.ownerDocument,s="LI"===e.nodeName;if(!s||r&&/^[OU]L$/.test(r.nodeName))if(o&&$(o,e)){if(!z(o)){if(!s)return;(i=te(a,"DIV")).appendChild(ee(o)),o.appendChild(i)}X(e),n=!z(e),o.appendChild(ee(e)),n&&ie(o,t),r&&se(r,t)}else s&&(o=te(a,"DIV"),e.insertBefore(o,r),ne(o,t))}var de=function(e,t){for(var i=e.childNodes;t&&e.nodeType===n;)t=(i=(e=i[t-1]).childNodes).length;return e},le=function(e,t){if(e.nodeType===n){var i=e.childNodes;if(t-1,r=e.compareBoundaryPoints(1,i)<1;return!o&&!r}var a=e.compareBoundaryPoints(0,i)<1,s=e.compareBoundaryPoints(2,i)>-1;return a&&s},ge=function(e){for(var t,n=e.startContainer,o=e.startOffset,r=e.endContainer,a=e.endOffset,s=!0;n.nodeType!==i&&(t=n.childNodes[o])&&!F(t);)n=t,o=0;if(a)for(;r.nodeType!==i;){if(!(t=r.childNodes[a-1])||F(t)){if(s&&t&&"BR"===t.nodeName){a-=1,s=!1;continue}break}a=Y(r=t)}else for(;r.nodeType!==i&&(t=r.firstChild)&&!F(t);)r=t;e.collapsed?(e.setStart(r,a),e.setEnd(n,o)):(e.setStart(n,o),e.setEnd(r,a))},me=function(e,t,n,o){var r,a=e.startContainer,s=e.startOffset,d=e.endContainer,l=e.endOffset,c=!0;for(t||(t=e.commonAncestorContainer),n||(n=t);!s&&a!==t&&a!==o;)r=a.parentNode,s=k.call(r.childNodes,a),a=r;for(;c&&d.nodeType!==i&&d.childNodes[l]&&"BR"===d.childNodes[l].nodeName&&(l+=1,c=!1),d!==n&&d!==o&&l===Y(d);)r=d.parentNode,l=k.call(r.childNodes,d)+1,d=r;e.setStart(a,s),e.setEnd(d,l)},ve=function(e,t){var n,i=e.startContainer;return(n=H(i)?K(i,t):i!==t&&W(i)?i:G(n=de(i,e.startOffset),t))&&pe(e,n,!0)?n:null},_e=function(e,t){var n,i,o=e.endContainer;if(H(o))n=K(o,t);else if(o!==t&&W(o))n=o;else{if(!(n=le(o,e.endOffset))||!V(t,n))for(n=t;i=n.lastChild;)n=i;n=K(n,t)}return n&&pe(e,n,!0)?n:null},Ce=new A(null,4|a,function(e){return e.nodeType===i?x.test(e.data):"IMG"===e.nodeName}),Ne=function(e,t){var n,o=e.startContainer,r=e.startOffset;if(Ce.root=null,o.nodeType===i){if(r)return!1;n=o}else if((n=le(o,r))&&!V(t,n)&&(n=null),!n&&(n=de(o,r)).nodeType===i&&n.length)return!1;return Ce.currentNode=n,Ce.root=ve(e,t),!Ce.previousNode()},Se=function(e,t){var n,o=e.endContainer,r=e.endOffset;if(Ce.root=null,o.nodeType===i){if((n=o.data.length)&&r-1||!p&&k.call(o,"text/plain")>-1&&k.call(o,"text/rtf")<0))return e.preventDefault(),void(!d&&(r=a.getData("text/html"))?this.insertHTML(r,!0):((r=a.getData("text/plain"))||(r=a.getData("text/uri-list")))&&this.insertPlainText(r,!0));this._awaitingPaste=!0;var m=this._doc.body,_=this.getSelection(),C=_.startContainer,N=_.startOffset,S=_.endContainer,y=_.endOffset,T=this.createElement("DIV",{contenteditable:"true",style:"position:fixed; overflow:hidden; top:0; right:100%; width:1px; height:1px;"});m.appendChild(T),_.selectNodeContents(T),this.setSelection(_),setTimeout(function(){try{g._awaitingPaste=!1;for(var e,t,n="",i=T;T=i;)i=T.nextSibling,X(T),(e=T.firstChild)&&e===T.lastChild&&"DIV"===e.nodeName&&(T=e),n+=T.innerHTML;t=g.createRange(C,N,S,y),g.setSelection(t),n&&g.insertHTML(n,!0)}catch(e){g.didError(e)}},0)},$e=function(e){for(var t=e.dataTransfer.types,n=t.length,i=!1,o=!1;n--;)switch(t[n]){case"text/plain":i=!0;break;case"text/html":o=!0;break;default:return}(o||i)&&this.saveUndoState()};function Qe(e,t,n){var i,o;if(e||(e={}),t)for(i in t)!n&&i in e||(o=t[i],e[i]=o&&o.constructor===Object?Qe(e[i],o,n):o);return e}function je(e,t){e.nodeType===o&&(e=e.body);var n,i=e.ownerDocument,r=i.defaultView;this._win=r,this._doc=i,this._root=e,this._events={},this._isFocused=!1,this._lastSelection=null,T&&this.addEventListener("beforedeactivate",this.getSelection),this._hasZWS=!1,this._lastAnchorNode=null,this._lastFocusNode=null,this._path="",this._willUpdatePath=!1,"onselectionchange"in i?this.addEventListener("selectionchange",this._updatePathOnEvent):(this.addEventListener("keyup",this._updatePathOnEvent),this.addEventListener("mouseup",this._updatePathOnEvent)),this._undoIndex=-1,this._undoStack=[],this._undoStackLength=0,this._isInUndoState=!1,this._ignoreChange=!1,this._ignoreAllChanges=!1,E?((n=new MutationObserver(this._docWasChanged.bind(this))).observe(e,{childList:!0,attributes:!0,characterData:!0,subtree:!0}),this._mutation=n):this.addEventListener("keyup",this._keyUpDetectChange),this._restoreSelection=!1,this.addEventListener("blur",et),this.addEventListener("mousedown",tt),this.addEventListener("touchstart",tt),this.addEventListener("focus",nt),this._awaitingPaste=!1,this.addEventListener(g?"beforecut":"cut",qe),this.addEventListener("copy",Ke),this.addEventListener("keydown",Ge),this.addEventListener("keyup",Ge),this.addEventListener(g?"beforepaste":"paste",Ze),this.addEventListener("drop",$e),this.addEventListener("keydown",Ee),this._keyHandlers=Object.create(Be),this.setConfig(t),g&&(r.Text.prototype.splitText=function(e){var t=this.ownerDocument.createTextNode(this.data.slice(e)),n=this.nextSibling,i=this.parentNode,o=this.length-e;return n?i.insertBefore(t,n):i.appendChild(t),o&&this.deleteData(e,o),t}),e.setAttribute("contenteditable","true");try{i.execCommand("enableObjectResizing",!1,"false"),i.execCommand("enableInlineTableEditing",!1,"false")}catch(e){}e.__squire__=this,this.setHTML("")}var Ve=je.prototype,Ye=function(e,t,n){var i=n._doc,o=e?DOMPurify.sanitize(e,{ALLOW_UNKNOWN_PROTOCOLS:!0,WHOLE_DOCUMENT:!1,RETURN_DOM:!0,RETURN_DOM_FRAGMENT:!0}):null;return o?i.importNode(o,!0):i.createDocumentFragment()};Ve.setConfig=function(e){return(e=Qe({blockTag:"DIV",blockAttributes:null,tagAttributes:{blockquote:null,ul:null,ol:null,li:null,a:null},classNames:{colour:"colour",fontFamily:"font",fontSize:"size",highlight:"highlight"},leafNodeNames:R,undo:{documentSizeThreshold:-1,undoLimit:-1},isInsertedHTMLSanitized:!0,isSetHTMLSanitized:!0,sanitizeToDOMFragment:"undefined"!=typeof DOMPurify&&DOMPurify.isSupported?Ye:null,willCutCopy:null,addLinks:!0},e,!0)).blockTag=e.blockTag.toUpperCase(),this._config=e,this},Ve.createElement=function(e,t,n){return te(this._doc,e,t,n)},Ve.createDefaultBlock=function(e){var t=this._config;return ne(this.createElement(t.blockTag,t.blockAttributes,e),this._root)},Ve.didError=function(e){console.log(e)},Ve.getDocument=function(){return this._doc},Ve.getRoot=function(){return this._root},Ve.modifyDocument=function(e){var t=this._mutation;t&&(t.takeRecords().length&&this._docWasChanged(),t.disconnect()),this._ignoreAllChanges=!0,e(),this._ignoreAllChanges=!1,t&&(t.observe(this._root,{childList:!0,attributes:!0,characterData:!0,subtree:!0}),this._ignoreChange=!1)};var Xe={pathChange:1,select:1,input:1,undoStateChange:1};Ve.fireEvent=function(e,t){var n,i,o,r=this._events[e];if(/^(?:focus|blur)/.test(e))if(n=this._root===this._doc.activeElement,"focus"===e){if(!n||this._isFocused)return this;this._isFocused=!0}else{if(n||!this._isFocused)return this;this._isFocused=!1}if(r)for(t||(t={}),t.type!==e&&(t.type=e),i=(r=r.slice()).length;i--;){o=r[i];try{o.handleEvent?o.handleEvent(t):o.call(this,t)}catch(t){t.details="Squire: fireEvent error. Event type: "+e,this.didError(t)}}return this},Ve.destroy=function(){var e,t=this._events;for(e in t)this.removeEventListener(e);this._mutation&&this._mutation.disconnect(),delete this._root.__squire__,this._undoIndex=-1,this._undoStack=[],this._undoStackLength=0},Ve.handleEvent=function(e){this.fireEvent(e.type,e)},Ve.addEventListener=function(e,t){var n=this._events[e],i=this._root;return t?(n||(n=this._events[e]=[],Xe[e]||("selectionchange"===e&&(i=this._doc),i.addEventListener(e,this,!0))),n.push(t),this):(this.didError({name:"Squire: addEventListener with null or undefined fn",message:"Event type: "+e}),this)},Ve.removeEventListener=function(e,t){var n,i=this._events[e],o=this._root;if(i){if(t)for(n=i.length;n--;)i[n]===t&&i.splice(n,1);else i.length=0;i.length||(delete this._events[e],Xe[e]||("selectionchange"===e&&(o=this._doc),o.removeEventListener(e,this,!0)))}return this},Ve.createRange=function(e,t,n,i){if(e instanceof this._win.Range)return e.cloneRange();var o=this._doc.createRange();return o.setStart(e,t),n?o.setEnd(n,i):o.setEnd(e,t),o},Ve.getCursorPosition=function(e){if(!e&&!(e=this.getSelection())||!e.getBoundingClientRect)return null;var t,n,i=e.getBoundingClientRect();return i&&!i.top&&(this._ignoreChange=!0,(t=this._doc.createElement("SPAN")).textContent=s,ce(e,t),i=t.getBoundingClientRect(),(n=t.parentNode).removeChild(t),re(n,e)),i},Ve._moveCursorTo=function(e){var t=this._root,n=this.createRange(t,e?0:t.childNodes.length);return ge(n),this.setSelection(n),this},Ve.moveCursorToStart=function(){return this._moveCursorTo(!0)},Ve.moveCursorToEnd=function(){return this._moveCursorTo(!1)};var Je=function(e){return e._win.getSelection()||null};function et(){this._restoreSelection=!0}function tt(){this._restoreSelection=!1}function nt(){this._restoreSelection&&this.setSelection(this._lastSelection)}Ve.setSelection=function(e){if(e)if(this._lastSelection=e,this._isFocused)if(c&&!this._restoreSelection)et.call(this),this.blur(),this.focus();else{u&&this._win.focus();var t=Je(this);t&&(t.removeAllRanges(),t.addRange(e))}else et.call(this);return this},Ve.getSelection=function(){var e,t,n,i,o=Je(this),r=this._root;return this._isFocused&&o&&o.rangeCount&&(t=(e=o.getRangeAt(0).cloneRange()).startContainer,n=e.endContainer,t&&F(t)&&e.setStartBefore(t),n&&F(n)&&e.setEndBefore(n)),e&&V(r,e.commonAncestorContainer)?this._lastSelection=e:V((i=(e=this._lastSelection).commonAncestorContainer).ownerDocument,i)||(e=null),e||(e=this.createRange(r.firstChild,0)),e},Ve.getSelectedText=function(){var e=this.getSelection();if(!e||e.collapsed)return"";var t,n=new A(e.commonAncestorContainer,4|a,function(t){return pe(e,t,!0)}),o=e.startContainer,r=e.endContainer,s=n.currentNode=o,d="",l=!1;for(n.filter(s)||(s=n.nextNode());s;)s.nodeType===i?(t=s.data)&&/\S/.test(t)&&(s===r&&(t=t.slice(0,e.endOffset)),s===o&&(t=t.slice(e.startOffset)),d+=t,l=!0):("BR"===s.nodeName||l&&!H(s))&&(d+="\n",l=!1),s=n.nextNode();return d},Ve.getPath=function(){return this._path};var it=function(e,t){for(var n,i,o,r=new A(e,4);i=r.nextNode();)for(;(o=i.data.indexOf(s))>-1&&(!t||i.parentNode!==t);){if(1===i.length){do{(n=i.parentNode).removeChild(i),i=n,r.currentNode=n}while(H(i)&&!Y(i));break}i.deleteData(o,1)}};Ve._didAddZWS=function(){this._hasZWS=!0},Ve._removeZWS=function(){this._hasZWS&&(it(this._root),this._hasZWS=!1)},Ve._updatePath=function(e,t){if(e){var i,o=e.startContainer,r=e.endContainer;(t||o!==this._lastAnchorNode||r!==this._lastFocusNode)&&(this._lastAnchorNode=o,this._lastFocusNode=r,i=o&&r?o===r?function e(t,i,o){var r,a,s,d,l,c="";return t&&t!==i&&(c=e(t.parentNode,i,o),t.nodeType===n&&(c+=(c?">":"")+t.nodeName,(r=t.id)&&(c+="#"+r),(a=t.className.trim())&&((s=a.split(/\s\s*/)).sort(),c+=".",c+=s.join(".")),(d=t.dir)&&(c+="[dir="+d+"]"),s&&(l=o.classNames,k.call(s,l.highlight)>-1&&(c+="[backgroundColor="+t.style.backgroundColor.replace(/ /g,"")+"]"),k.call(s,l.colour)>-1&&(c+="[color="+t.style.color.replace(/ /g,"")+"]"),k.call(s,l.fontFamily)>-1&&(c+="[fontFamily="+t.style.fontFamily.replace(/ /g,"")+"]"),k.call(s,l.fontSize)>-1&&(c+="[fontSize="+t.style.fontSize+"]")))),c}(r,this._root,this._config):"(selection)":"",this._path!==i&&(this._path=i,this.fireEvent("pathChange",{path:i}))),this.fireEvent(e.collapsed?"cursor":"select",{range:e})}},Ve._updatePathOnEvent=function(e){var t=this;t._isFocused&&!t._willUpdatePath&&(t._willUpdatePath=!0,setTimeout(function(){t._willUpdatePath=!1,t._updatePath(t.getSelection())},0))},Ve.focus=function(){return this._root.focus({preventScroll:!0}),C&&this.fireEvent("focus"),this},Ve.blur=function(){return this._root.blur(),C&&this.fireEvent("blur"),this};var ot="squire-selection-end";Ve._saveRangeToBookmark=function(e){var t,n=this.createElement("INPUT",{id:"squire-selection-start",type:"hidden"}),i=this.createElement("INPUT",{id:ot,type:"hidden"});ce(e,n),e.collapse(!1),ce(e,i),2&n.compareDocumentPosition(i)&&(n.id=ot,i.id="squire-selection-start",t=n,n=i,i=t),e.setStartAfter(n),e.setEndBefore(i)},Ve._getRangeAndRemoveBookmark=function(e){var t=this._root,n=t.querySelector("#squire-selection-start"),o=t.querySelector("#"+ot);if(n&&o){var r=n.parentNode,a=o.parentNode,s=k.call(r.childNodes,n),d=k.call(a.childNodes,o);r===a&&(d-=1),X(n),X(o),e||(e=this._doc.createRange()),e.setStart(r,s),e.setEnd(a,d),re(r,e),r!==a&&re(a,e),e.collapsed&&(r=e.startContainer).nodeType===i&&((a=r.childNodes[e.startOffset])&&a.nodeType===i||(a=r.childNodes[e.startOffset-1]),a&&a.nodeType===i&&(e.setStart(a,0),e.collapse(!0)))}return e||null},Ve._keyUpDetectChange=function(e){var t=e.keyCode;e.ctrlKey||e.metaKey||e.altKey||!(t<16||t>20)||!(t<33||t>45)||this._docWasChanged()},Ve._docWasChanged=function(){b&&(w=new WeakMap),this._ignoreAllChanges||(E&&this._ignoreChange?this._ignoreChange=!1:(this._isInUndoState&&(this._isInUndoState=!1,this.fireEvent("undoStateChange",{canUndo:!0,canRedo:!1})),this.fireEvent("input")))},Ve._recordUndoState=function(e,t){if(!this._isInUndoState||t){var n,i=this._undoIndex,o=this._undoStack,r=this._config.undo,a=r.documentSizeThreshold,s=r.undoLimit;t||(i+=1),i-1&&2*n.length>a&&s>-1&&i>s&&(o.splice(0,i-s),i=s,this._undoStackLength=s),o[i]=n,this._undoIndex=i,this._undoStackLength+=1,this._isInUndoState=!0}},Ve.saveUndoState=function(e){return e===t&&(e=this.getSelection()),this._recordUndoState(e,this._isInUndoState),this._getRangeAndRemoveBookmark(e),this},Ve.undo=function(){if(0!==this._undoIndex||!this._isInUndoState){this._recordUndoState(this.getSelection(),!1),this._undoIndex-=1,this._setHTML(this._undoStack[this._undoIndex]);var e=this._getRangeAndRemoveBookmark();e&&this.setSelection(e),this._isInUndoState=!0,this.fireEvent("undoStateChange",{canUndo:0!==this._undoIndex,canRedo:!0}),this.fireEvent("input")}return this},Ve.redo=function(){var e=this._undoIndex,t=this._undoStackLength;if(e+1c&&h.splitText(c),h===s&&l&&(h=h.splitText(l),d===s&&(d=h,c-=l),s=h,l=0),J(h,o=this.createElement(e,t)),o.appendChild(h))}while(r.nextNode());d.nodeType!==i&&(h.nodeType===i?(d=h,c=h.length):(d=h.parentNode,c=1)),n=this.createRange(s,l,d,c)}return n},Ve._removeFormat=function(e,t,n,o){this._saveRangeToBookmark(n);var r,a=this._doc;n.collapsed&&(y?(r=a.createTextNode(s),this._didAddZWS()):r=a.createTextNode(""),ce(n,r));for(var d=n.commonAncestorContainer;H(d);)d=d.parentNode;var l=n.startContainer,c=n.startOffset,h=n.endContainer,f=n.endOffset,u=[],p=function(e,t){if(!pe(n,e,!1)){var o,r,a=e.nodeType===i;if(pe(n,e,!0))if(a)e===h&&f!==e.length&&u.push([t,e.splitText(f)]),e===l&&c&&(e.splitText(c),u.push([t,e]));else for(o=e.firstChild;o;o=r)r=o.nextSibling,p(o,t);else"INPUT"===e.nodeName||a&&!e.data||u.push([t,e])}},g=Array.prototype.filter.call(d.getElementsByTagName(e),function(i){return pe(n,i,!0)&&Q(i,e,t)});return o||g.forEach(function(e){p(e,e)}),u.forEach(function(e){var t=e[0].cloneNode(!1),n=e[1];J(n,t),t.appendChild(n)}),g.forEach(function(e){J(e,ee(e))}),this._getRangeAndRemoveBookmark(n),r&&n.collapse(!1),re(d,n),n},Ve.changeFormat=function(e,t,n,i){return n||(n=this.getSelection())?(this.saveUndoState(n),t&&(n=this._removeFormat(t.tag.toUpperCase(),t.attributes||{},n,i)),e&&(n=this._addFormat(e.tag.toUpperCase(),e.attributes||{},n)),this.setSelection(n),this._updatePath(n,!0),E||this._docWasChanged(),this):this};var rt={DT:"DD",DD:"DT",LI:"LI",PRE:"PRE"},at=function(e,t,n,i){var o=rt[t.nodeName],r=null,a=oe(n,i,t.parentNode,e._root),s=e._config;return o||(o=s.blockTag,r=s.blockAttributes),Q(a,o,r)||(t=te(a.ownerDocument,o,r),a.dir&&(t.dir=a.dir),J(a,t),t.appendChild(ee(a)),a=t),a};Ve.forEachBlock=function(e,t,n){if(!n&&!(n=this.getSelection()))return this;t&&this.saveUndoState(n);var i=this._root,o=ve(n,i),r=_e(n,i);if(o&&r)do{if(e(o)||o===r)break}while(o=G(o,i));return t&&(this.setSelection(n),this._updatePath(n,!0),E||this._docWasChanged()),this},Ve.modifyBlocks=function(e,t){if(!t&&!(t=this.getSelection()))return this;this._recordUndoState(t,this._isInUndoState);var n,i=this._root;return ye(t,i),me(t,i,i,i),n=he(t,i,i),ce(t,e.call(this,n)),t.endOffset]+|\([^\s()<>]+\))+(?:[^\s?&`!()\[\]{};:'".,<>«»“”‘’]|\([^\s()<>]+\)))|([\w\-.%+]+@(?:[\w\-]+\.)+[a-z]{2,}\b(?:[?][^&?\s]+=[^\s?&`!()\[\]{};:'".,<>«»“”‘’]+(?:&[^&?\s]+=[^\s?&`!()\[\]{};:'".,<>«»“”‘’]+)*)?))/i;var ht=function(e,t,n){var i,o,r,a,s,d,l,c=e.ownerDocument,h=new A(e,4,function(e){return!j(e,t,"A")}),f=n.linkRegExp,u=n._config.tagAttributes.a;if(f)for(;i=h.nextNode();)for(o=i.data,r=i.parentNode;a=f.exec(o);)d=(s=a.index)+a[0].length,s&&(l=c.createTextNode(o.slice(0,s)),r.insertBefore(l,i)),(l=n.createElement("A",Qe({href:a[1]?/^(?:ht|f)tps?:/i.test(a[1])?a[1]:"http://"+a[1]:"mailto:"+a[0]},u,!1))).textContent=o.slice(s,d),r.insertBefore(l,i),i.data=o=o.slice(d)};Ve.insertHTML=function(e,t){var n,i,o,r,a,s,d,l=this._config,c=l.isInsertedHTMLSanitized?l.sanitizeToDOMFragment:null,h=this.getSelection(),f=this._doc;"function"==typeof c?r=c(e,t,this):(t&&(n=e.indexOf("\x3c!--StartFragment--\x3e"),i=e.lastIndexOf("\x3c!--EndFragment--\x3e"),n>-1&&i>-1&&(e=e.slice(n+20,i))),/<\/td>((?!<\/tr>)[\s\S])*$/i.test(e)&&(e=""+e+""),/<\/tr>((?!<\/table>)[\s\S])*$/i.test(e)&&(e=""+e+"
"),(o=this.createElement("DIV")).innerHTML=e,(r=f.createDocumentFragment()).appendChild(ee(o))),this.saveUndoState(h);try{for(a=this._root,s=r,d={fragment:r,preventDefault:function(){this.defaultPrevented=!0},defaultPrevented:!1},ht(r,r,this),we(r,l),We(r,a,!1),Fe(r),r.normalize();s=G(s,r);)ne(s,a);t&&this.fireEvent("willPaste",d),d.defaultPrevented||(ue(h,d.fragment,a),E||this._docWasChanged(),h.collapse(!1),this._ensureBottomLine()),this.setSelection(h),this._updatePath(h,!0),t&&this.focus()}catch(e){this.didError(e)}return this};var ft=function(e){return e.split("&").join("&").split("<").join("<").split(">").join(">").split('"').join(""")};Ve.insertPlainText=function(e,t){var n=this.getSelection();if(n.collapsed&&j(n.startContainer,this._root,"PRE")){var o,r,a=n.startContainer,s=n.startOffset;return a&&a.nodeType===i||(o=this._doc.createTextNode(""),a.insertBefore(o,a.childNodes[s]),a=o,s=0),r={text:e,preventDefault:function(){this.defaultPrevented=!0},defaultPrevented:!1},t&&this.fireEvent("willPaste",r),r.defaultPrevented||(e=r.text,a.insertData(s,e),n.setStart(a,s+e.length),n.collapse(!0)),this.setSelection(n),this}var d,l,c,h,f=e.split("\n"),u=this._config,p=u.blockTag,g=u.blockAttributes,m="",v="<"+p;for(d in g)v+=" "+d+'="'+ft(g[d])+'"';for(v+=">",l=0,c=f.length;l")+m),f[l]=h;return this.insertHTML(f.join(""),t)};var ut=function(e,t,n){return function(){return this[e](t,n),this.focus()}};Ve.addStyles=function(e){if(e){var t=this._doc.documentElement.firstChild,n=this.createElement("STYLE",{type:"text/css"});n.appendChild(this._doc.createTextNode(e)),t.appendChild(n)}return this},Ve.bold=ut("changeFormat",{tag:"B"}),Ve.italic=ut("changeFormat",{tag:"I"}),Ve.underline=ut("changeFormat",{tag:"U"}),Ve.strikethrough=ut("changeFormat",{tag:"S"}),Ve.subscript=ut("changeFormat",{tag:"SUB"},{tag:"SUP"}),Ve.superscript=ut("changeFormat",{tag:"SUP"},{tag:"SUB"}),Ve.removeBold=ut("changeFormat",null,{tag:"B"}),Ve.removeItalic=ut("changeFormat",null,{tag:"I"}),Ve.removeUnderline=ut("changeFormat",null,{tag:"U"}),Ve.removeStrikethrough=ut("changeFormat",null,{tag:"S"}),Ve.removeSubscript=ut("changeFormat",null,{tag:"SUB"}),Ve.removeSuperscript=ut("changeFormat",null,{tag:"SUP"}),Ve.makeLink=function(e,t){var n=this.getSelection();if(n.collapsed){var i=e.indexOf(":")+1;if(i)for(;"/"===e[i];)i+=1;ce(n,this._doc.createTextNode(e.slice(i)))}return t=Qe(Qe({href:e},t,!0),this._config.tagAttributes.a,!1),this.changeFormat({tag:"A",attributes:t},{tag:"A"},n),this.focus()},Ve.removeLink=function(){return this.changeFormat(null,{tag:"A"},this.getSelection(),!0),this.focus()},Ve.setFontFace=function(e){var t=this._config.classNames.fontFamily;return this.changeFormat(e?{tag:"SPAN",attributes:{class:t,style:"font-family: "+e+", sans-serif;"}}:null,{tag:"SPAN",attributes:{class:t}}),this.focus()},Ve.setFontSize=function(e){var t=this._config.classNames.fontSize;return this.changeFormat(e?{tag:"SPAN",attributes:{class:t,style:"font-size: "+("number"==typeof e?e+"px":e)}}:null,{tag:"SPAN",attributes:{class:t}}),this.focus()},Ve.setTextColour=function(e){var t=this._config.classNames.colour;return this.changeFormat(e?{tag:"SPAN",attributes:{class:t,style:"color:"+e}}:null,{tag:"SPAN",attributes:{class:t}}),this.focus()},Ve.setHighlightColour=function(e){var t=this._config.classNames.highlight;return this.changeFormat(e?{tag:"SPAN",attributes:{class:t,style:"background-color:"+e}}:e,{tag:"SPAN",attributes:{class:t}}),this.focus()},Ve.setTextAlignment=function(e){return this.forEachBlock(function(t){var n=t.className.split(/\s+/).filter(function(e){return!!e&&!/^align/.test(e)}).join(" ");e?(t.className=n+" align-"+e,t.style.textAlign=e):(t.className=n,t.style.textAlign="")},!0),this.focus()},Ve.setTextDirection=function(e){return this.forEachBlock(function(t){e?t.dir=e:t.removeAttribute("dir")},!0),this.focus()};var pt=function(e){for(var t,n=this._root,i=this._doc,o=i.createDocumentFragment(),r=q(e,n);t=r.nextNode();){var a,s,d=t.querySelectorAll("BR"),l=[],c=d.length;for(a=0;a-1;)r.appendChild(s.createTextNode(o.slice(0,a))),r.appendChild(s.createElement("BR")),o=o.slice(a+1);i.parentNode.insertBefore(r,i),i.data=o}ie(t,d),J(t,ee(t))}return e};Ve.code=function(){var e=this.getSelection();return e.collapsed||z(e.commonAncestorContainer)?this.modifyBlocks(pt,e):this.changeFormat({tag:"CODE",attributes:this._config.tagAttributes.code},null,e),this.focus()},Ve.removeCode=function(){var e=this.getSelection();return j(e.commonAncestorContainer,this._root,"PRE")?this.modifyBlocks(gt,e):this.changeFormat(null,{tag:"CODE"},e),this.focus()},Ve.toggleCode=function(){return this.hasFormat("PRE")||this.hasFormat("CODE")?this.removeCode():this.code(),this},Ve.removeAllFormatting=function(e){if(!e&&!(e=this.getSelection())||e.collapsed)return this;for(var t=this._root,n=e.commonAncestorContainer;n&&!W(n);)n=n.parentNode;if(n||(ye(e,t),n=t),n.nodeType===i)return this;this.saveUndoState(e),me(e,n,n,t);for(var o,r,a=n.ownerDocument,s=e.startContainer,d=e.startOffset,l=e.endContainer,c=e.endOffset,h=a.createDocumentFragment(),f=a.createDocumentFragment(),u=oe(l,c,n,t),p=oe(s,d,n,t);p!==u;)o=p.nextSibling,h.appendChild(p),p=o;return function e(t,n,o){var r,a;for(r=n.firstChild;r;r=a){if(a=r.nextSibling,H(r)){if(r.nodeType===i||"BR"===r.nodeName||"IMG"===r.nodeName){o.appendChild(r);continue}}else if(W(r)){o.appendChild(t.createDefaultBlock([e(t,r,t._doc.createDocumentFragment())]));continue}e(t,r,o)}return o}(this,h,f),f.normalize(),p=f.firstChild,o=f.lastChild,r=n.childNodes,p?(n.insertBefore(f,u),d=k.call(r,p),c=k.call(r,o)+1):c=d=k.call(r,u),e.setStart(n,d),e.setEnd(n,c),re(n,e),ge(e),this.setSelection(e),this._updatePath(e,!0),this.focus()},Ve.increaseQuoteLevel=ut("modifyBlocks",function(e){return this.createElement("BLOCKQUOTE",this._config.tagAttributes.blockquote,[e])}),Ve.decreaseQuoteLevel=ut("modifyBlocks",st),Ve.makeUnorderedList=ut("modifyBlocks",function(e){return lt(this,e,"UL"),e}),Ve.makeOrderedList=ut("modifyBlocks",function(e){return lt(this,e,"OL"),e}),Ve.removeList=ut("modifyBlocks",function(e){var t,n,i,o,r,a=e.querySelectorAll("UL, OL"),s=e.querySelectorAll("LI"),d=this._root;for(t=0,n=a.length;tl?o.startOffset-=1:o.startOffset===l&&(o.startContainer=a,o.startOffset=Q(a))),o.endContainer===t&&(o.endOffset>l?o.endOffset-=1:o.endOffset===l&&(o.endContainer=a,o.endOffset=Q(a))),$(r),r.nodeType===i?a.appendData(r.data):c.push(V(r));else if(r.nodeType===n){for(s=c.length;s--;)r.appendChild(c.pop());e(r,o)}}(e,o),t.setStart(o.startContainer,o.startOffset),t.setEnd(o.endContainer,o.endOffset)}}function ne(e,t,i,o){for(var r,a,s,d=t;(r=d.parentNode)&&r!==o&&r.nodeType===n&&1===r.childNodes.length;)d=r;$(d),s=e.childNodes.length,(a=e.lastChild)&&"BR"===a.nodeName&&(e.removeChild(a),s-=1),e.appendChild(V(t)),i.setStart(e,s),i.collapse(!0),te(e,i)}function ie(e,t){var n,i,o=e.previousSibling,r=e.firstChild,a=e.ownerDocument,s="LI"===e.nodeName;if(!s||r&&/^[OU]L$/.test(r.nodeName))if(o&&q(o,e)){if(!w(o)){if(!s)return;(i=Y(a,"DIV")).appendChild(V(o)),o.appendChild(i)}$(e),n=!w(e),o.appendChild(V(e)),n&&J(o,t),r&&ie(r,t)}else s&&(o=Y(a,"DIV"),e.insertBefore(o,r),X(o,t))}var oe=function(e,t){for(var i=e.childNodes;t&&e.nodeType===n;)t=(i=(e=i[t-1]).childNodes).length;return e},re=function(e,t){if(e.nodeType===n){var i=e.childNodes;if(t-1,r=e.compareBoundaryPoints(1,i)<1;return!o&&!r}var a=e.compareBoundaryPoints(0,i)<1,s=e.compareBoundaryPoints(2,i)>-1;return a&&s},he=function(e){for(var t,n=e.startContainer,o=e.startOffset,r=e.endContainer,a=e.endOffset,s=!0;n.nodeType!==i&&(t=n.childNodes[o])&&!P(t);)n=t,o=0;if(a)for(;r.nodeType!==i;){if(!(t=r.childNodes[a-1])||P(t)){if(s&&t&&"BR"===t.nodeName){a-=1,s=!1;continue}break}a=Q(r=t)}else for(;r.nodeType!==i&&(t=r.firstChild)&&!P(t);)r=t;e.collapsed?(e.setStart(r,a),e.setEnd(n,o)):(e.setStart(n,o),e.setEnd(r,a))},ue=function(e,t,n,o){var r,a=e.startContainer,s=e.startOffset,d=e.endContainer,l=e.endOffset,c=!0;for(t||(t=e.commonAncestorContainer),n||(n=t);!s&&a!==t&&a!==o;)r=a.parentNode,s=T.call(r.childNodes,a),a=r;for(;c&&d.nodeType!==i&&d.childNodes[l]&&"BR"===d.childNodes[l].nodeName&&(l+=1,c=!1),d!==n&&d!==o&&l===Q(d);)r=d.parentNode,l=T.call(r.childNodes,d)+1,d=r;e.setStart(a,s),e.setEnd(d,l)},fe=function(e,t){var n,i=e.startContainer;return(n=I(i)?H(i,t):i!==t&&F(i)?i:W(n=oe(i,e.startOffset),t))&&ce(e,n,!0)?n:null},pe=function(e,t){var n,i,o=e.endContainer;if(I(o))n=H(o,t);else if(o!==t&&F(o))n=o;else{if(!(n=re(o,e.endOffset))||!Z(t,n))for(n=t;i=n.lastChild;)n=i;n=H(n,t)}return n&&ce(e,n,!0)?n:null},ge=new k(null,4|a,function(e){return e.nodeType===i?y.test(e.data):"IMG"===e.nodeName}),me=function(e,t){var n,o=e.startContainer,r=e.startOffset;if(ge.root=null,o.nodeType===i){if(r)return!1;n=o}else if((n=re(o,r))&&!Z(t,n)&&(n=null),!n&&(n=oe(o,r)).nodeType===i&&n.length)return!1;return ge.currentNode=n,ge.root=fe(e,t),!ge.previousNode()},ve=function(e,t){var n,o=e.endContainer,r=e.endOffset;if(ge.root=null,o.nodeType===i){if((n=o.data.length)&&r-1||!p&&T.call(o,"text/plain")>-1&&T.call(o,"text/rtf")<0))return e.preventDefault(),void(!d&&(r=a.getData("text/html"))?this.insertHTML(r,!0):((r=a.getData("text/plain"))||(r=a.getData("text/uri-list")))&&this.insertPlainText(r,!0));this._awaitingPaste=!0;var v=this._doc.body,_=this.getSelection(),C=_.startContainer,N=_.startOffset,S=_.endContainer,y=_.endOffset,E=this.createElement("DIV",{contenteditable:"true",style:"position:fixed; overflow:hidden; top:0; right:100%; width:1px; height:1px;"});v.appendChild(E),_.selectNodeContents(E),this.setSelection(_),setTimeout(function(){try{m._awaitingPaste=!1;for(var e,t,n="",i=E;E=i;)i=E.nextSibling,$(E),(e=E.firstChild)&&e===E.lastChild&&"DIV"===e.nodeName&&(E=e),n+=E.innerHTML;t=m.createRange(C,N,S,y),m.setSelection(t),n&&m.insertHTML(n,!0)}catch(e){m.didError(e)}},0)},qe=function(e){for(var t=e.dataTransfer.types,n=t.length,i=!1,o=!1;n--;)switch(t[n]){case"text/plain":i=!0;break;case"text/html":o=!0;break;default:return}(o||i)&&this.saveUndoState()};function Ke(e,t,n){var i,o;if(e||(e={}),t)for(i in t)!n&&i in e||(o=t[i],e[i]=o&&o.constructor===Object?Ke(e[i],o,n):o);return e}function Ge(e,t){e.nodeType===o&&(e=e.body);var n,i=e.ownerDocument,r=i.defaultView;this._win=r,this._doc=i,this._root=e,this._events={},this._isFocused=!1,this._lastSelection=null,this._hasZWS=!1,this._lastAnchorNode=null,this._lastFocusNode=null,this._path="",this._willUpdatePath=!1,"onselectionchange"in i?this.addEventListener("selectionchange",this._updatePathOnEvent):(this.addEventListener("keyup",this._updatePathOnEvent),this.addEventListener("mouseup",this._updatePathOnEvent)),this._undoIndex=-1,this._undoStack=[],this._undoStackLength=0,this._isInUndoState=!1,this._ignoreChange=!1,this._ignoreAllChanges=!1,N?((n=new MutationObserver(this._docWasChanged.bind(this))).observe(e,{childList:!0,attributes:!0,characterData:!0,subtree:!0}),this._mutation=n):this.addEventListener("keyup",this._keyUpDetectChange),this._restoreSelection=!1,this.addEventListener("blur",Ve),this.addEventListener("mousedown",Ye),this.addEventListener("touchstart",Ye),this.addEventListener("focus",Xe),this._awaitingPaste=!1,this.addEventListener("cut",Me),this.addEventListener("copy",He),this.addEventListener("keydown",We),this.addEventListener("keyup",We),this.addEventListener("paste",ze),this.addEventListener("drop",qe),this.addEventListener("keydown",Ne),this._keyHandlers=Object.create(be),this.setConfig(t),e.setAttribute("contenteditable","true");try{i.execCommand("enableObjectResizing",!1,"false"),i.execCommand("enableInlineTableEditing",!1,"false")}catch(e){}e.__squire__=this,this.setHTML("")}var Ze=Ge.prototype,Qe=function(e,t,n){var i=n._doc,o=e?DOMPurify.sanitize(e,{ALLOW_UNKNOWN_PROTOCOLS:!0,WHOLE_DOCUMENT:!1,RETURN_DOM:!0,RETURN_DOM_FRAGMENT:!0}):null;return o?i.importNode(o,!0):i.createDocumentFragment()};Ze.setConfig=function(e){return(e=Ke({blockTag:"DIV",blockAttributes:null,tagAttributes:{blockquote:null,ul:null,ol:null,li:null,a:null},classNames:{colour:"colour",fontFamily:"font",fontSize:"size",highlight:"highlight"},leafNodeNames:x,undo:{documentSizeThreshold:-1,undoLimit:-1},isInsertedHTMLSanitized:!0,isSetHTMLSanitized:!0,sanitizeToDOMFragment:"undefined"!=typeof DOMPurify&&DOMPurify.isSupported?Qe:null,willCutCopy:null,addLinks:!0},e,!0)).blockTag=e.blockTag.toUpperCase(),this._config=e,this},Ze.createElement=function(e,t,n){return Y(this._doc,e,t,n)},Ze.createDefaultBlock=function(e){var t=this._config;return X(this.createElement(t.blockTag,t.blockAttributes,e),this._root)},Ze.didError=function(e){console.log(e)},Ze.getDocument=function(){return this._doc},Ze.getRoot=function(){return this._root},Ze.modifyDocument=function(e){var t=this._mutation;t&&(t.takeRecords().length&&this._docWasChanged(),t.disconnect()),this._ignoreAllChanges=!0,e(),this._ignoreAllChanges=!1,t&&(t.observe(this._root,{childList:!0,attributes:!0,characterData:!0,subtree:!0}),this._ignoreChange=!1)};var $e={pathChange:1,select:1,input:1,undoStateChange:1};Ze.fireEvent=function(e,t){var n,i,o,r=this._events[e];if(/^(?:focus|blur)/.test(e))if(n=this._root===this._doc.activeElement,"focus"===e){if(!n||this._isFocused)return this;this._isFocused=!0}else{if(n||!this._isFocused)return this;this._isFocused=!1}if(r)for(t||(t={}),t.type!==e&&(t.type=e),i=(r=r.slice()).length;i--;){o=r[i];try{o.handleEvent?o.handleEvent(t):o.call(this,t)}catch(t){t.details="Squire: fireEvent error. Event type: "+e,this.didError(t)}}return this},Ze.destroy=function(){var e,t=this._events;for(e in t)this.removeEventListener(e);this._mutation&&this._mutation.disconnect(),delete this._root.__squire__,this._undoIndex=-1,this._undoStack=[],this._undoStackLength=0},Ze.handleEvent=function(e){this.fireEvent(e.type,e)},Ze.addEventListener=function(e,t){var n=this._events[e],i=this._root;return t?(n||(n=this._events[e]=[],$e[e]||("selectionchange"===e&&(i=this._doc),i.addEventListener(e,this,!0))),n.push(t),this):(this.didError({name:"Squire: addEventListener with null or undefined fn",message:"Event type: "+e}),this)},Ze.removeEventListener=function(e,t){var n,i=this._events[e],o=this._root;if(i){if(t)for(n=i.length;n--;)i[n]===t&&i.splice(n,1);else i.length=0;i.length||(delete this._events[e],$e[e]||("selectionchange"===e&&(o=this._doc),o.removeEventListener(e,this,!0)))}return this},Ze.createRange=function(e,t,n,i){if(e instanceof this._win.Range)return e.cloneRange();var o=this._doc.createRange();return o.setStart(e,t),n?o.setEnd(n,i):o.setEnd(e,t),o},Ze.getCursorPosition=function(e){if(!e&&!(e=this.getSelection())||!e.getBoundingClientRect)return null;var t,n,i=e.getBoundingClientRect();return i&&!i.top&&(this._ignoreChange=!0,(t=this._doc.createElement("SPAN")).textContent=s,ae(e,t),i=t.getBoundingClientRect(),(n=t.parentNode).removeChild(t),te(n,e)),i},Ze._moveCursorTo=function(e){var t=this._root,n=this.createRange(t,e?0:t.childNodes.length);return he(n),this.setSelection(n),this},Ze.moveCursorToStart=function(){return this._moveCursorTo(!0)},Ze.moveCursorToEnd=function(){return this._moveCursorTo(!1)};var je=function(e){return e._win.getSelection()||null};function Ve(){this._restoreSelection=!0}function Ye(){this._restoreSelection=!1}function Xe(){this._restoreSelection&&this.setSelection(this._lastSelection)}Ze.setSelection=function(e){if(e)if(this._lastSelection=e,this._isFocused)if(c&&!this._restoreSelection)Ve.call(this),this.blur(),this.focus();else{f&&this._win.focus();var t=je(this);t&&(t.removeAllRanges(),t.addRange(e))}else Ve.call(this);return this},Ze.getSelection=function(){var e,t,n,i,o=je(this),r=this._root;return this._isFocused&&o&&o.rangeCount&&(t=(e=o.getRangeAt(0).cloneRange()).startContainer,n=e.endContainer,t&&P(t)&&e.setStartBefore(t),n&&P(n)&&e.setEndBefore(n)),e&&Z(r,e.commonAncestorContainer)?this._lastSelection=e:Z((i=(e=this._lastSelection).commonAncestorContainer).ownerDocument,i)||(e=null),e||(e=this.createRange(r.firstChild,0)),e},Ze.getSelectedText=function(){var e=this.getSelection();if(!e||e.collapsed)return"";var t,n=new k(e.commonAncestorContainer,4|a,function(t){return ce(e,t,!0)}),o=e.startContainer,r=e.endContainer,s=n.currentNode=o,d="",l=!1;for(n.filter(s)||(s=n.nextNode());s;)s.nodeType===i?(t=s.data)&&/\S/.test(t)&&(s===r&&(t=t.slice(0,e.endOffset)),s===o&&(t=t.slice(e.startOffset)),d+=t,l=!0):("BR"===s.nodeName||l&&!I(s))&&(d+="\n",l=!1),s=n.nextNode();return d},Ze.getPath=function(){return this._path};var Je=function(e,t){for(var n,i,o,r=new k(e,4);i=r.nextNode();)for(;(o=i.data.indexOf(s))>-1&&(!t||i.parentNode!==t);){if(1===i.length){do{(n=i.parentNode).removeChild(i),i=n,r.currentNode=n}while(I(i)&&!Q(i));break}i.deleteData(o,1)}};Ze._didAddZWS=function(){this._hasZWS=!0},Ze._removeZWS=function(){this._hasZWS&&(Je(this._root),this._hasZWS=!1)},Ze._updatePath=function(e,t){if(e){var i,o=e.startContainer,r=e.endContainer;(t||o!==this._lastAnchorNode||r!==this._lastFocusNode)&&(this._lastAnchorNode=o,this._lastFocusNode=r,i=o&&r?o===r?function e(t,i,o){var r,a,s,d,l,c="";return t&&t!==i&&(c=e(t.parentNode,i,o),t.nodeType===n&&(c+=(c?">":"")+t.nodeName,(r=t.id)&&(c+="#"+r),(a=t.className.trim())&&((s=a.split(/\s\s*/)).sort(),c+=".",c+=s.join(".")),(d=t.dir)&&(c+="[dir="+d+"]"),s&&(l=o.classNames,T.call(s,l.highlight)>-1&&(c+="[backgroundColor="+t.style.backgroundColor.replace(/ /g,"")+"]"),T.call(s,l.colour)>-1&&(c+="[color="+t.style.color.replace(/ /g,"")+"]"),T.call(s,l.fontFamily)>-1&&(c+="[fontFamily="+t.style.fontFamily.replace(/ /g,"")+"]"),T.call(s,l.fontSize)>-1&&(c+="[fontSize="+t.style.fontSize+"]")))),c}(r,this._root,this._config):"(selection)":"",this._path!==i&&(this._path=i,this.fireEvent("pathChange",{path:i}))),this.fireEvent(e.collapsed?"cursor":"select",{range:e})}},Ze._updatePathOnEvent=function(e){var t=this;t._isFocused&&!t._willUpdatePath&&(t._willUpdatePath=!0,setTimeout(function(){t._willUpdatePath=!1,t._updatePath(t.getSelection())},0))},Ze.focus=function(){return this._root.focus({preventScroll:!0}),v&&this.fireEvent("focus"),this},Ze.blur=function(){return this._root.blur(),v&&this.fireEvent("blur"),this};var et="squire-selection-end";Ze._saveRangeToBookmark=function(e){var t,n=this.createElement("INPUT",{id:"squire-selection-start",type:"hidden"}),i=this.createElement("INPUT",{id:et,type:"hidden"});ae(e,n),e.collapse(!1),ae(e,i),2&n.compareDocumentPosition(i)&&(n.id=et,i.id="squire-selection-start",t=n,n=i,i=t),e.setStartAfter(n),e.setEndBefore(i)},Ze._getRangeAndRemoveBookmark=function(e){var t=this._root,n=t.querySelector("#squire-selection-start"),o=t.querySelector("#"+et);if(n&&o){var r=n.parentNode,a=o.parentNode,s=T.call(r.childNodes,n),d=T.call(a.childNodes,o);r===a&&(d-=1),$(n),$(o),e||(e=this._doc.createRange()),e.setStart(r,s),e.setEnd(a,d),te(r,e),r!==a&&te(a,e),e.collapsed&&(r=e.startContainer).nodeType===i&&((a=r.childNodes[e.startOffset])&&a.nodeType===i||(a=r.childNodes[e.startOffset-1]),a&&a.nodeType===i&&(e.setStart(a,0),e.collapse(!0)))}return e||null},Ze._keyUpDetectChange=function(e){var t=e.keyCode;e.ctrlKey||e.metaKey||e.altKey||!(t<16||t>20)||!(t<33||t>45)||this._docWasChanged()},Ze._docWasChanged=function(){S&&(D=new WeakMap),this._ignoreAllChanges||(N&&this._ignoreChange?this._ignoreChange=!1:(this._isInUndoState&&(this._isInUndoState=!1,this.fireEvent("undoStateChange",{canUndo:!0,canRedo:!1})),this.fireEvent("input")))},Ze._recordUndoState=function(e,t){if(!this._isInUndoState||t){var n,i=this._undoIndex,o=this._undoStack,r=this._config.undo,a=r.documentSizeThreshold,s=r.undoLimit;t||(i+=1),i-1&&2*n.length>a&&s>-1&&i>s&&(o.splice(0,i-s),i=s,this._undoStackLength=s),o[i]=n,this._undoIndex=i,this._undoStackLength+=1,this._isInUndoState=!0}},Ze.saveUndoState=function(e){return e===t&&(e=this.getSelection()),this._recordUndoState(e,this._isInUndoState),this._getRangeAndRemoveBookmark(e),this},Ze.undo=function(){if(0!==this._undoIndex||!this._isInUndoState){this._recordUndoState(this.getSelection(),!1),this._undoIndex-=1,this._setHTML(this._undoStack[this._undoIndex]);var e=this._getRangeAndRemoveBookmark();e&&this.setSelection(e),this._isInUndoState=!0,this.fireEvent("undoStateChange",{canUndo:0!==this._undoIndex,canRedo:!0}),this.fireEvent("input")}return this},Ze.redo=function(){var e=this._undoIndex,t=this._undoStackLength;if(e+1c&&h.splitText(c),h===s&&l&&(h=h.splitText(l),d===s&&(d=h,c-=l),s=h,l=0),j(h,o=this.createElement(e,t)),o.appendChild(h))}while(r.nextNode());d.nodeType!==i&&(h.nodeType===i?(d=h,c=h.length):(d=h.parentNode,c=1)),n=this.createRange(s,l,d,c)}return n},Ze._removeFormat=function(e,t,n,o){this._saveRangeToBookmark(n);var r,a=this._doc;n.collapsed&&(C?(r=a.createTextNode(s),this._didAddZWS()):r=a.createTextNode(""),ae(n,r));for(var d=n.commonAncestorContainer;I(d);)d=d.parentNode;var l=n.startContainer,c=n.startOffset,h=n.endContainer,u=n.endOffset,f=[],p=function(e,t){if(!ce(n,e,!1)){var o,r,a=e.nodeType===i;if(ce(n,e,!0))if(a)e===h&&u!==e.length&&f.push([t,e.splitText(u)]),e===l&&c&&(e.splitText(c),f.push([t,e]));else for(o=e.firstChild;o;o=r)r=o.nextSibling,p(o,t);else"INPUT"===e.nodeName||a&&!e.data||f.push([t,e])}},g=Array.prototype.filter.call(d.getElementsByTagName(e),function(i){return ce(n,i,!0)&&K(i,e,t)});return o||g.forEach(function(e){p(e,e)}),f.forEach(function(e){var t=e[0].cloneNode(!1),n=e[1];j(n,t),t.appendChild(n)}),g.forEach(function(e){j(e,V(e))}),this._getRangeAndRemoveBookmark(n),r&&n.collapse(!1),te(d,n),n},Ze.changeFormat=function(e,t,n,i){return n||(n=this.getSelection())?(this.saveUndoState(n),t&&(n=this._removeFormat(t.tag.toUpperCase(),t.attributes||{},n,i)),e&&(n=this._addFormat(e.tag.toUpperCase(),e.attributes||{},n)),this.setSelection(n),this._updatePath(n,!0),N||this._docWasChanged(),this):this};var tt={DT:"DD",DD:"DT",LI:"LI",PRE:"PRE"},nt=function(e,t,n,i){var o=tt[t.nodeName],r=null,a=ee(n,i,t.parentNode,e._root),s=e._config;return o||(o=s.blockTag,r=s.blockAttributes),K(a,o,r)||(t=Y(a.ownerDocument,o,r),a.dir&&(t.dir=a.dir),j(a,t),t.appendChild(V(a)),a=t),a};Ze.forEachBlock=function(e,t,n){if(!n&&!(n=this.getSelection()))return this;t&&this.saveUndoState(n);var i=this._root,o=fe(n,i),r=pe(n,i);if(o&&r)do{if(e(o)||o===r)break}while(o=W(o,i));return t&&(this.setSelection(n),this._updatePath(n,!0),N||this._docWasChanged()),this},Ze.modifyBlocks=function(e,t){if(!t&&!(t=this.getSelection()))return this;this._recordUndoState(t,this._isInUndoState);var n,i=this._root;return _e(t,i),ue(t,i,i,i),n=se(t,i,i),ae(t,e.call(this,n)),t.endOffset]+|\([^\s()<>]+\))+(?:[^\s?&`!()\[\]{};:'".,<>«»“”‘’]|\([^\s()<>]+\)))|([\w\-.%+]+@(?:[\w\-]+\.)+[a-z]{2,}\b(?:[?][^&?\s]+=[^\s?&`!()\[\]{};:'".,<>«»“”‘’]+(?:&[^&?\s]+=[^\s?&`!()\[\]{};:'".,<>«»“”‘’]+)*)?))/i;var st=function(e,t,n){var i,o,r,a,s,d,l,c=e.ownerDocument,h=new k(e,4,function(e){return!G(e,t,"A")}),u=n.linkRegExp,f=n._config.tagAttributes.a;if(u)for(;i=h.nextNode();)for(o=i.data,r=i.parentNode;a=u.exec(o);)d=(s=a.index)+a[0].length,s&&(l=c.createTextNode(o.slice(0,s)),r.insertBefore(l,i)),(l=n.createElement("A",Ke({href:a[1]?/^(?:ht|f)tps?:/i.test(a[1])?a[1]:"http://"+a[1]:"mailto:"+a[0]},f,!1))).textContent=o.slice(s,d),r.insertBefore(l,i),i.data=o=o.slice(d)};Ze.insertHTML=function(e,t){var n,i,o,r,a,s,d,l=this._config,c=l.isInsertedHTMLSanitized?l.sanitizeToDOMFragment:null,h=this.getSelection(),u=this._doc;"function"==typeof c?r=c(e,t,this):(t&&(n=e.indexOf("\x3c!--StartFragment--\x3e"),i=e.lastIndexOf("\x3c!--EndFragment--\x3e"),n>-1&&i>-1&&(e=e.slice(n+20,i))),/<\/td>((?!<\/tr>)[\s\S])*$/i.test(e)&&(e=""+e+""),/<\/tr>((?!<\/table>)[\s\S])*$/i.test(e)&&(e=""+e+"
"),(o=this.createElement("DIV")).innerHTML=e,(r=u.createDocumentFragment()).appendChild(V(o))),this.saveUndoState(h);try{for(a=this._root,s=r,d={fragment:r,preventDefault:function(){this.defaultPrevented=!0},defaultPrevented:!1},st(r,r,this),De(r,l),Fe(r,a,!1),Pe(r),r.normalize();s=W(s,r);)X(s,a);t&&this.fireEvent("willPaste",d),d.defaultPrevented||(le(h,d.fragment,a),N||this._docWasChanged(),h.collapse(!1),this._ensureBottomLine()),this.setSelection(h),this._updatePath(h,!0),t&&this.focus()}catch(e){this.didError(e)}return this};var dt=function(e){return e.split("&").join("&").split("<").join("<").split(">").join(">").split('"').join(""")};Ze.insertPlainText=function(e,t){var n=this.getSelection();if(n.collapsed&&G(n.startContainer,this._root,"PRE")){var o,r,a=n.startContainer,s=n.startOffset;return a&&a.nodeType===i||(o=this._doc.createTextNode(""),a.insertBefore(o,a.childNodes[s]),a=o,s=0),r={text:e,preventDefault:function(){this.defaultPrevented=!0},defaultPrevented:!1},t&&this.fireEvent("willPaste",r),r.defaultPrevented||(e=r.text,a.insertData(s,e),n.setStart(a,s+e.length),n.collapse(!0)),this.setSelection(n),this}var d,l,c,h,u=e.split("\n"),f=this._config,p=f.blockTag,g=f.blockAttributes,m="",v="<"+p;for(d in g)v+=" "+d+'="'+dt(g[d])+'"';for(v+=">",l=0,c=u.length;l")+m),u[l]=h;return this.insertHTML(u.join(""),t)};var lt=function(e,t,n){return function(){return this[e](t,n),this.focus()}};Ze.addStyles=function(e){if(e){var t=this._doc.documentElement.firstChild,n=this.createElement("STYLE",{type:"text/css"});n.appendChild(this._doc.createTextNode(e)),t.appendChild(n)}return this},Ze.bold=lt("changeFormat",{tag:"B"}),Ze.italic=lt("changeFormat",{tag:"I"}),Ze.underline=lt("changeFormat",{tag:"U"}),Ze.strikethrough=lt("changeFormat",{tag:"S"}),Ze.subscript=lt("changeFormat",{tag:"SUB"},{tag:"SUP"}),Ze.superscript=lt("changeFormat",{tag:"SUP"},{tag:"SUB"}),Ze.removeBold=lt("changeFormat",null,{tag:"B"}),Ze.removeItalic=lt("changeFormat",null,{tag:"I"}),Ze.removeUnderline=lt("changeFormat",null,{tag:"U"}),Ze.removeStrikethrough=lt("changeFormat",null,{tag:"S"}),Ze.removeSubscript=lt("changeFormat",null,{tag:"SUB"}),Ze.removeSuperscript=lt("changeFormat",null,{tag:"SUP"}),Ze.makeLink=function(e,t){var n=this.getSelection();if(n.collapsed){var i=e.indexOf(":")+1;if(i)for(;"/"===e[i];)i+=1;ae(n,this._doc.createTextNode(e.slice(i)))}return t=Ke(Ke({href:e},t,!0),this._config.tagAttributes.a,!1),this.changeFormat({tag:"A",attributes:t},{tag:"A"},n),this.focus()},Ze.removeLink=function(){return this.changeFormat(null,{tag:"A"},this.getSelection(),!0),this.focus()},Ze.setFontFace=function(e){var t=this._config.classNames.fontFamily;return this.changeFormat(e?{tag:"SPAN",attributes:{class:t,style:"font-family: "+e+", sans-serif;"}}:null,{tag:"SPAN",attributes:{class:t}}),this.focus()},Ze.setFontSize=function(e){var t=this._config.classNames.fontSize;return this.changeFormat(e?{tag:"SPAN",attributes:{class:t,style:"font-size: "+("number"==typeof e?e+"px":e)}}:null,{tag:"SPAN",attributes:{class:t}}),this.focus()},Ze.setTextColour=function(e){var t=this._config.classNames.colour;return this.changeFormat(e?{tag:"SPAN",attributes:{class:t,style:"color:"+e}}:null,{tag:"SPAN",attributes:{class:t}}),this.focus()},Ze.setHighlightColour=function(e){var t=this._config.classNames.highlight;return this.changeFormat(e?{tag:"SPAN",attributes:{class:t,style:"background-color:"+e}}:e,{tag:"SPAN",attributes:{class:t}}),this.focus()},Ze.setTextAlignment=function(e){return this.forEachBlock(function(t){var n=t.className.split(/\s+/).filter(function(e){return!!e&&!/^align/.test(e)}).join(" ");e?(t.className=n+" align-"+e,t.style.textAlign=e):(t.className=n,t.style.textAlign="")},!0),this.focus()},Ze.setTextDirection=function(e){return this.forEachBlock(function(t){e?t.dir=e:t.removeAttribute("dir")},!0),this.focus()};var ct=function(e){for(var t,n=this._root,i=this._doc,o=i.createDocumentFragment(),r=M(e,n);t=r.nextNode();){var a,s,d=t.querySelectorAll("BR"),l=[],c=d.length;for(a=0;a-1;)r.appendChild(s.createTextNode(o.slice(0,a))),r.appendChild(s.createElement("BR")),o=o.slice(a+1);i.parentNode.insertBefore(r,i),i.data=o}J(t,d),j(t,V(t))}return e};Ze.code=function(){var e=this.getSelection();return e.collapsed||w(e.commonAncestorContainer)?this.modifyBlocks(ct,e):this.changeFormat({tag:"CODE",attributes:this._config.tagAttributes.code},null,e),this.focus()},Ze.removeCode=function(){var e=this.getSelection();return G(e.commonAncestorContainer,this._root,"PRE")?this.modifyBlocks(ht,e):this.changeFormat(null,{tag:"CODE"},e),this.focus()},Ze.toggleCode=function(){return this.hasFormat("PRE")||this.hasFormat("CODE")?this.removeCode():this.code(),this},Ze.removeAllFormatting=function(e){if(!e&&!(e=this.getSelection())||e.collapsed)return this;for(var t=this._root,n=e.commonAncestorContainer;n&&!F(n);)n=n.parentNode;if(n||(_e(e,t),n=t),n.nodeType===i)return this;this.saveUndoState(e),ue(e,n,n,t);for(var o,r,a=n.ownerDocument,s=e.startContainer,d=e.startOffset,l=e.endContainer,c=e.endOffset,h=a.createDocumentFragment(),u=a.createDocumentFragment(),f=ee(l,c,n,t),p=ee(s,d,n,t);p!==f;)o=p.nextSibling,h.appendChild(p),p=o;return function e(t,n,o){var r,a;for(r=n.firstChild;r;r=a){if(a=r.nextSibling,I(r)){if(r.nodeType===i||"BR"===r.nodeName||"IMG"===r.nodeName){o.appendChild(r);continue}}else if(F(r)){o.appendChild(t.createDefaultBlock([e(t,r,t._doc.createDocumentFragment())]));continue}e(t,r,o)}return o}(this,h,u),u.normalize(),p=u.firstChild,o=u.lastChild,r=n.childNodes,p?(n.insertBefore(u,f),d=T.call(r,p),c=T.call(r,o)+1):c=d=T.call(r,f),e.setStart(n,d),e.setEnd(n,c),te(n,e),he(e),this.setSelection(e),this._updatePath(e,!0),this.focus()},Ze.increaseQuoteLevel=lt("modifyBlocks",function(e){return this.createElement("BLOCKQUOTE",this._config.tagAttributes.blockquote,[e])}),Ze.decreaseQuoteLevel=lt("modifyBlocks",it),Ze.makeUnorderedList=lt("modifyBlocks",function(e){return rt(this,e,"UL"),e}),Ze.makeOrderedList=lt("modifyBlocks",function(e){return rt(this,e,"OL"),e}),Ze.removeList=lt("modifyBlocks",function(e){var t,n,i,o,r,a=e.querySelectorAll("UL, OL"),s=e.querySelectorAll("LI"),d=this._root;for(t=0,n=a.length;t