diff --git a/build/squire-raw.js b/build/squire-raw.js index 2878bf2..d50bb0e 100644 --- a/build/squire-raw.js +++ b/build/squire-raw.js @@ -47,6 +47,7 @@ var cantFocusEmptyTextNodes = isIElt11 || isWebKit; var losesSelectionOnBlur = isIElt11; var canObserveMutations = typeof MutationObserver !== 'undefined'; +var canWeakMap = typeof WeakMap !== 'undefined'; // Use [^ \t\r\n] instead of \S so that nbsp does not count as white-space var notWS = /[^ \t\r\n]/; @@ -201,25 +202,48 @@ function every ( nodeList, fn ) { // --- +var UNKNOWN = 0; +var INLINE = 1; +var BLOCK = 2; +var CONTAINER = 3; + +var nodeCategoryCache = canWeakMap ? new WeakMap() : null; + function isLeaf ( node ) { - return node.nodeType === ELEMENT_NODE && - !!leafNodeNames[ node.nodeName ]; + return node.nodeType === ELEMENT_NODE && !!leafNodeNames[ node.nodeName ]; } -function isInline ( node ) { - return inlineNodeNames.test( node.nodeName ) && +function getNodeCategory ( node ) { + if ( canWeakMap && nodeCategoryCache.has( node ) ) { + return nodeCategoryCache.get( node ); + } + var type = node.nodeType; + var nodeCategory; + if ( type === TEXT_NODE ) { + nodeCategory = INLINE; + } else if ( type !== ELEMENT_NODE && type !== DOCUMENT_FRAGMENT_NODE ) { + nodeCategory = UNKNOWN; + } else if ( !every( node.childNodes, isInline ) ) { // Malformed HTML can have block tags inside inline tags. Need to treat // these as containers rather than inline. See #239. - ( node.nodeType === TEXT_NODE || every( node.childNodes, isInline ) ); + nodeCategory = CONTAINER; + } else if ( inlineNodeNames.test( node.nodeName ) ) { + nodeCategory = INLINE; + } else { + nodeCategory = BLOCK; + } + if ( canWeakMap ) { + nodeCategoryCache.set( node, nodeCategory ); + } + return nodeCategory; +} +function isInline ( node ) { + return getNodeCategory( node ) === INLINE; } function isBlock ( node ) { - var type = node.nodeType; - return ( type === ELEMENT_NODE || type === DOCUMENT_FRAGMENT_NODE ) && - !isInline( node ) && every( node.childNodes, isInline ); + return getNodeCategory( node ) === BLOCK; } function isContainer ( node ) { - var type = node.nodeType; - return ( type === ELEMENT_NODE || type === DOCUMENT_FRAGMENT_NODE ) && - !isInline( node ) && !isBlock( node ); + return getNodeCategory( node ) === CONTAINER; } function getBlockWalker ( node, root ) { @@ -3110,6 +3134,9 @@ proto._keyUpDetectChange = function ( event ) { }; proto._docWasChanged = function () { + if ( canWeakMap ) { + nodeCategoryCache = new WeakMap(); + } if ( this._ignoreAllChanges ) { return; } diff --git a/build/squire.js b/build/squire.js index a8facde..6923514 100644 --- a/build/squire.js +++ b/build/squire.js @@ -1,2 +1,2 @@ -!function(e,t){"use strict";function n(e,t,n){this.root=this.currentNode=e,this.nodeType=t,this.filter=n}function o(e,t){for(var n=e.length;n--;)if(!t(e[n]))return!1;return!0}function i(e){return e.nodeType===w&&!!Ct[e.nodeName]}function r(e){return vt.test(e.nodeName)&&(e.nodeType===F||o(e.childNodes,r))}function a(e){var t=e.nodeType;return(t===w||t===H)&&!r(e)&&o(e.childNodes,r)}function s(e){var t=e.nodeType;return!(t!==w&&t!==H||r(e)||a(e))}function d(e,t){var o=new n(t,W,a);return o.currentNode=e,o}function l(e,t){return e=d(e,t).previousNode(),e!==t?e:null}function c(e,t){return e=d(e,t).nextNode(),e!==t?e:null}function h(e,t){return!i(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 u(e,t,n){if(e.nodeName!==t)return!1;for(var o in n)if(e.getAttribute(o)!==n[o])return!1;return!0}function f(e,t,n,o){for(;e&&e!==t;){if(u(e,n,o))return e;e=e.parentNode}return null}function p(e,t){for(;t;){if(t===e)return!0;t=t.parentNode}return!1}function g(e,t){var n,o,i,r,a="";return e&&e!==t&&(a=g(e.parentNode,t),e.nodeType===w&&(a+=(a?">":"")+e.nodeName,(n=e.id)&&(a+="#"+n),(o=e.className.trim())&&(i=o.split(/\s\s*/),i.sort(),a+=".",a+=i.join(".")),(r=e.dir)&&(a+="[dir="+r+"]"),i&&(gt.call(i,j)>-1&&(a+="[backgroundColor="+e.style.backgroundColor.replace(/ /g,"")+"]"),gt.call(i,Q)>-1&&(a+="[color="+e.style.color.replace(/ /g,"")+"]"),gt.call(i,V)>-1&&(a+="[fontFamily="+e.style.fontFamily.replace(/ /g,"")+"]"),gt.call(i,$)>-1&&(a+="[fontSize="+e.style.fontSize+"]")))),a}function m(e){var t=e.nodeType;return t===w?e.childNodes.length:e.length||0}function v(e){var t=e.parentNode;return t&&t.removeChild(e),e}function C(e,t){var n=e.parentNode;n&&n.replaceChild(t,e)}function N(e){for(var t=e.ownerDocument.createDocumentFragment(),n=e.childNodes,o=n?n.length:0;o--;)t.appendChild(e.firstChild);return t}function _(e,n,o,i){var r,a,s,d,l=e.createElement(n);if(o instanceof Array&&(i=o,o=null),o)for(r in o)a=o[r],a!==t&&l.setAttribute(r,o[r]);if(i)for(s=0,d=i.length;d>s;s+=1)l.appendChild(i[s]);return l}function S(e,t){var n,o,a=e.ownerDocument,s=e;if(e===t&&((o=e.firstChild)&&"BR"!==o.nodeName||(n=L(a).createDefaultBlock(),o?e.replaceChild(n,o):e.appendChild(n),e=n,n=null)),e.nodeType===F)return s;if(r(e)){for(o=e.firstChild;ht&&o&&o.nodeType===F&&!o.data;)e.removeChild(o),o=e.firstChild;o||(ht?(n=a.createTextNode(Y),L(a)._didAddZWS()):n=a.createTextNode(""))}else if(ct){for(;e.nodeType!==F&&!i(e);){if(o=e.firstChild,!o){n=a.createTextNode("");break}e=o}e.nodeType===F?/^ +$/.test(e.data)&&(e.data=""):i(e)&&e.parentNode.insertBefore(a.createTextNode(""),e)}else if(!e.querySelector("BR"))for(n=_(a,"BR");(o=e.lastElementChild)&&!r(o);)e=o;if(n)try{e.appendChild(n)}catch(d){L(a).didError({name:"Squire: fixCursor – "+d,message:"Parent: "+e.nodeName+"/"+e.innerHTML+" appendChild: "+n.nodeName})}return s}function y(e,t){var n,o,i,a,d=e.childNodes,l=e.ownerDocument,c=null,h=L(l)._config;for(n=0,o=d.length;o>n;n+=1)i=d[n],a="BR"===i.nodeName,!a&&r(i)?(c||(c=_(l,h.blockTag,h.blockAttributes)),c.appendChild(i),n-=1,o-=1):(a||c)&&(c||(c=_(l,h.blockTag,h.blockAttributes)),S(c,t),a?e.replaceChild(c,i):(e.insertBefore(c,i),n+=1,o+=1),c=null),s(i)&&y(i,t);return c&&e.appendChild(S(c,t)),e}function T(e,t,n,o){var i,r,a,s=e.nodeType;if(s===F&&e!==n)return T(e.parentNode,e.splitText(t),n,o);if(s===w){if("number"==typeof t&&(t=ts?t.startOffset-=1:t.startOffset===s&&(t.startContainer=o,t.startOffset=m(o))),t.endContainer===e&&(t.endOffset>s?t.endOffset-=1:t.endOffset===s&&(t.endContainer=o,t.endOffset=m(o))),v(n),n.nodeType===F?o.appendData(n.data):d.push(N(n));else if(n.nodeType===w){for(i=d.length;i--;)n.appendChild(d.pop());b(n,t)}}function E(e,t){if(e.nodeType===F&&(e=e.parentNode),e.nodeType===w){var n={startContainer:t.startContainer,startOffset:t.startOffset,endContainer:t.endContainer,endOffset:t.endOffset};b(e,n),t.setStart(n.startContainer,n.startOffset),t.setEnd(n.endContainer,n.endOffset)}}function k(e,t,n){for(var o,i,r=t;1===r.parentNode.childNodes.length;)r=r.parentNode;v(r),i=e.childNodes.length,o=e.lastChild,o&&"BR"===o.nodeName&&(e.removeChild(o),i-=1),e.appendChild(N(t)),n.setStart(e,i),n.collapse(!0),E(e,n),rt&&(o=e.lastChild)&&"BR"===o.nodeName&&e.removeChild(o)}function B(e,t){var n,o,i=e.previousSibling,r=e.firstChild,a=e.ownerDocument,d="LI"===e.nodeName;if(!d||r&&/^[OU]L$/.test(r.nodeName))if(i&&h(i,e)){if(!s(i)){if(!d)return;o=_(a,"DIV"),o.appendChild(N(i)),i.appendChild(o)}v(e),n=!s(e),i.appendChild(N(e)),n&&y(i,t),r&&B(r,t)}else d&&(i=_(a,"DIV"),e.insertBefore(i,r),S(i,t))}function x(e){this.isShiftDown=e.shiftKey}function L(e){for(var t,n=rn.length;n--;)if(t=rn[n],t._doc===e)return t;return null}function A(e,t,n){var o,i;if(e||(e={}),t)for(o in t)!n&&o in e||(i=t[o],e[o]=i&&i.constructor===Object?A(e[o],i,n):i);return e}function O(e,t){e.nodeType===M&&(e=e.body);var n,o=e.ownerDocument,i=o.defaultView;this._win=i,this._doc=o,this._root=e,this._events={},this._isFocused=!1,this._lastSelection=null,ut&&this.addEventListener("beforedeactivate",this.getSelection),this._hasZWS=!1,this._lastAnchorNode=null,this._lastFocusNode=null,this._path="",this._willUpdatePath=!1,"onselectionchange"in o?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,ft?(n=new MutationObserver(this._docWasChanged.bind(this)),n.observe(e,{childList:!0,attributes:!0,characterData:!0,subtree:!0}),this._mutation=n):this.addEventListener("keyup",this._keyUpDetectChange),this._restoreSelection=!1,this.addEventListener("blur",R),this.addEventListener("mousedown",D),this.addEventListener("touchstart",D),this.addEventListener("focus",U),this._awaitingPaste=!1,this.addEventListener(it?"beforecut":"cut",en),this.addEventListener("copy",tn),this.addEventListener("keydown",x),this.addEventListener("keyup",x),this.addEventListener(it?"beforepaste":"paste",nn),this.addEventListener("drop",on),this.addEventListener(rt?"keypress":"keydown",Pt),this._keyHandlers=Object.create(Mt),this.setConfig(t),it&&(i.Text.prototype.splitText=function(e){var t=this.ownerDocument.createTextNode(this.data.slice(e)),n=this.nextSibling,o=this.parentNode,i=this.length-e;return n?o.insertBefore(t,n):o.appendChild(t),i&&this.deleteData(e,i),t}),e.setAttribute("contenteditable","true");try{o.execCommand("enableObjectResizing",!1,"false"),o.execCommand("enableInlineTableEditing",!1,"false")}catch(r){}rn.push(this),this.setHTML("")}function R(){this._restoreSelection=!0}function D(){this._restoreSelection=!1}function U(){this._restoreSelection&&this.setSelection(this._lastSelection)}function P(e,t,n){var o,i;for(o=t.firstChild;o;o=i){if(i=o.nextSibling,r(o)){if(o.nodeType===F||"BR"===o.nodeName||"IMG"===o.nodeName){n.appendChild(o);continue}}else if(a(o)){n.appendChild(e.createDefaultBlock([P(e,o,e._doc.createDocumentFragment())]));continue}P(e,o,n)}return n}var I=2,w=1,F=3,M=9,H=11,W=1,z=4,q=0,K=1,G=2,Z=3,j="highlight",Q="colour",V="font",$="size",Y="​",X=e.defaultView,J=navigator.userAgent,et=/iP(?:ad|hone|od)/.test(J),tt=/Mac OS X/.test(J),nt=/Android/.test(J),ot=/Gecko\//.test(J),it=/Trident\/[456]\./.test(J),rt=!!X.opera,at=/Edge\//.test(J),st=!at&&/WebKit\//.test(J),dt=/Trident\/[4567]\./.test(J),lt=tt?"meta-":"ctrl-",ct=it||rt,ht=it||st,ut=it,ft="undefined"!=typeof MutationObserver,pt=/[^ \t\r\n]/,gt=Array.prototype.indexOf;Object.create||(Object.create=function(e){var t=function(){};return t.prototype=e,new t});var mt={1:1,2:2,3:4,8:128,9:256,11:1024};n.prototype.nextNode=function(){for(var e,t=this.currentNode,n=this.root,o=this.nodeType,i=this.filter;;){for(e=t.firstChild;!e&&t&&t!==n;)e=t.nextSibling,e||(t=t.parentNode);if(!e)return null;if(mt[e.nodeType]&o&&i(e))return this.currentNode=e,e;t=e}},n.prototype.previousNode=function(){for(var e,t=this.currentNode,n=this.root,o=this.nodeType,i=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(mt[e.nodeType]&o&&i(e))return this.currentNode=e,e;t=e}},n.prototype.previousPONode=function(){for(var e,t=this.currentNode,n=this.root,o=this.nodeType,i=this.filter;;){for(e=t.lastChild;!e&&t&&t!==n;)e=t.previousSibling,e||(t=t.parentNode);if(!e)return null;if(mt[e.nodeType]&o&&i(e))return this.currentNode=e,e;t=e}};var vt=/^(?:#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)$/,Ct={BR:1,HR:1,IFRAME:1,IMG:1,INPUT:1},Nt=function(e,t){for(var n=e.childNodes;t&&e.nodeType===w;)e=n[t-1],n=e.childNodes,t=n.length;return e},_t=function(e,t){if(e.nodeType===w){var n=e.childNodes;if(t-1,r=e.compareBoundaryPoints(K,o)<1;return!i&&!r}var a=e.compareBoundaryPoints(q,o)<1,s=e.compareBoundaryPoints(G,o)>-1;return a&&s},kt=function(e){for(var t,n=e.startContainer,o=e.startOffset,r=e.endContainer,a=e.endOffset,s=!0;n.nodeType!==F&&(t=n.childNodes[o],t&&!i(t));)n=t,o=0;if(a)for(;r.nodeType!==F;){if(t=r.childNodes[a-1],!t||i(t)){if(s&&t&&"BR"===t.nodeName){a-=1,s=!1;continue}break}r=t,a=m(r)}else for(;r.nodeType!==F&&(t=r.firstChild,t&&!i(t));)r=t;e.collapsed?(e.setStart(r,a),e.setEnd(n,o)):(e.setStart(n,o),e.setEnd(r,a))},Bt=function(e,t){var n,o=e.startContainer,i=e.startOffset,r=e.endContainer,a=e.endOffset,s=!0;for(t||(t=e.commonAncestorContainer);o!==t&&!i;)n=o.parentNode,i=gt.call(n.childNodes,o),o=n;for(;;){if(s&&r.nodeType!==F&&r.childNodes[a]&&"BR"===r.childNodes[a].nodeName&&(a+=1,s=!1),r===t||a!==m(r))break;n=r.parentNode,a=gt.call(n.childNodes,r)+1,r=n}e.setStart(o,i),e.setEnd(r,a)},xt=function(e,t){var n,o=e.startContainer;return r(o)?n=l(o,t):o!==t&&a(o)?n=o:(n=Nt(o,e.startOffset),n=c(n,t)),n&&Et(e,n,!0)?n:null},Lt=function(e,t){var n,o,i=e.endContainer;if(r(i))n=l(i,t);else if(i!==t&&a(i))n=i;else{if(n=_t(i,e.endOffset),!n||!p(t,n))for(n=t;o=n.lastChild;)n=o;n=l(n,t)}return n&&Et(e,n,!0)?n:null},At=new n(null,z|W,function(e){return e.nodeType===F?pt.test(e.data):"IMG"===e.nodeName}),Ot=function(e,t){var n,o=e.startContainer,i=e.startOffset;if(At.root=null,o.nodeType===F){if(i)return!1;n=o}else if(n=_t(o,i),n&&!p(t,n)&&(n=null),!n&&(n=Nt(o,i),n.nodeType===F&&n.length))return!1;return At.currentNode=n,At.root=xt(e,t),!At.previousNode()},Rt=function(e,t){var n,o=e.endContainer,i=e.endOffset;if(At.root=null,o.nodeType===F){if(n=o.data.length,n&&n>i)return!1;At.currentNode=o}else At.currentNode=Nt(o,i);return At.root=Lt(e,t),!At.nextNode()},Dt=function(e,t){var n,o=xt(e,t),i=Lt(e,t);o&&i&&(n=o.parentNode,e.setStart(n,gt.call(n.childNodes,o)),n=i.parentNode,e.setEnd(n,gt.call(n.childNodes,i)+1))},Ut={8:"backspace",9:"tab",13:"enter",32:"space",33:"pageup",34:"pagedown",37:"left",39:"right",46:"delete",219:"[",221:"]"},Pt=function(e){var t=e.keyCode,n=Ut[t],o="",i=this.getSelection();e.defaultPrevented||(n||(n=String.fromCharCode(t).toLowerCase(),/^[A-Za-z0-9]$/.test(n)||(n="")),rt&&46===e.which&&(n="."),t>111&&124>t&&(n="f"+(t-111)),"backspace"!==n&&"delete"!==n&&(e.altKey&&(o+="alt-"),e.ctrlKey&&(o+="ctrl-"),e.metaKey&&(o+="meta-")),e.shiftKey&&(o+="shift-"),n=o+n,this._keyHandlers[n]?this._keyHandlers[n](this,e,i):1!==n.length||i.collapsed||(this.saveUndoState(i),Tt(i,this._root),this._ensureBottomLine(),this.setSelection(i),this._updatePath(i,!0)))},It=function(e){return function(t,n){n.preventDefault(),t[e]()}},wt=function(e,t){return t=t||null,function(n,o){o.preventDefault();var i=n.getSelection();n.hasFormat(e,null,i)?n.changeFormat(null,{tag:e},i):n.changeFormat({tag:e},t,i)}},Ft=function(e,t){try{t||(t=e.getSelection());var n,o=t.startContainer;for(o.nodeType===F&&(o=o.parentNode),n=o;r(n)&&(!n.textContent||n.textContent===Y);)o=n,n=o.parentNode;o!==n&&(t.setStart(n,gt.call(n.childNodes,o)),t.collapse(!0),n.removeChild(o),a(n)||(n=l(n,e._root)),S(n,e._root),kt(t)),o===e._root&&(o=o.firstChild)&&"BR"===o.nodeName&&v(o),e._ensureBottomLine(),e.setSelection(t),e._updatePath(t,!0)}catch(i){e.didError(i)}},Mt={enter:function(e,t,n){var o,i,r,a=e._root;if(t.preventDefault(),e._recordUndoState(n),bn(n.startContainer,a,e),e._removeZWS(),e._getRangeAndRemoveBookmark(n),n.collapsed||Tt(n,a),o=xt(n,a),!o||/^T[HD]$/.test(o.nodeName))return St(n,e.createElement("BR")),n.collapse(!1),e.setSelection(n),void e._updatePath(n,!0);if((i=f(o,a,"LI"))&&(o=i),!o.textContent){if(f(o,a,"UL")||f(o,a,"OL"))return e.modifyBlocks(yn,n);if(f(o,a,"BLOCKQUOTE"))return e.modifyBlocks(mn,n)}for(r=fn(e,o,n.startContainer,n.startOffset),ln(o),Vt(o),S(o,a);r.nodeType===w;){var s,d=r.firstChild;if("A"===r.nodeName&&(!r.textContent||r.textContent===Y)){d=e._doc.createTextNode(""),C(r,d),r=d;break}for(;d&&d.nodeType===F&&!d.data&&(s=d.nextSibling,s&&"BR"!==s.nodeName);)v(d),d=s;if(!d||"BR"===d.nodeName||d.nodeType===F&&!rt)break;r=d}n=e._createRange(r,0),e.setSelection(n),e._updatePath(n,!0)},backspace:function(e,t,n){var o=e._root;if(e._removeZWS(),e.saveUndoState(n),n.collapsed)if(Ot(n,o)){t.preventDefault();var i,r=xt(n,o);if(!r)return;if(y(r.parentNode,o),i=l(r,o)){if(!i.isContentEditable)return void v(i);for(k(i,r,n),r=i.parentNode;r!==o&&!r.nextSibling;)r=r.parentNode;r!==o&&(r=r.nextSibling)&&B(r,o),e.setSelection(n)}else if(r){if(f(r,o,"UL")||f(r,o,"OL"))return e.modifyBlocks(yn,n);if(f(r,o,"BLOCKQUOTE"))return e.modifyBlocks(gn,n);e.setSelection(n),e._updatePath(n,!0)}}else e.setSelection(n),setTimeout(function(){Ft(e)},0);else t.preventDefault(),Tt(n,o),Ft(e,n)},"delete":function(e,t,n){var o,i,r,a,s,d,l=e._root;if(e._removeZWS(),e.saveUndoState(n),n.collapsed)if(Rt(n,l)){if(t.preventDefault(),o=xt(n,l),!o)return;if(y(o.parentNode,l),i=c(o,l)){if(!i.isContentEditable)return void v(i);for(k(o,i,n),i=o.parentNode;i!==l&&!i.nextSibling;)i=i.parentNode;i!==l&&(i=i.nextSibling)&&B(i,l),e.setSelection(n),e._updatePath(n,!0)}}else{if(r=n.cloneRange(),Bt(n,e._root),a=n.endContainer,s=n.endOffset,a.nodeType===w&&(d=a.childNodes[s],d&&"IMG"===d.nodeName))return t.preventDefault(),v(d),kt(n),void Ft(e,n);e.setSelection(r),setTimeout(function(){Ft(e)},0)}else t.preventDefault(),Tt(n,l),Ft(e,n)},tab:function(e,t,n){var o,i,r=e._root;if(e._removeZWS(),n.collapsed&&Ot(n,r))for(o=xt(n,r);i=o.parentNode;){if("UL"===i.nodeName||"OL"===i.nodeName){t.preventDefault(),e.modifyBlocks(Sn,n);break}o=i}},"shift-tab":function(e,t,n){var o,i=e._root;e._removeZWS(),n.collapsed&&Ot(n,i)&&(o=n.startContainer,(f(o,i,"UL")||f(o,i,"OL"))&&(t.preventDefault(),e.modifyBlocks(yn,n)))},space:function(e,t,n){var o,i;e._recordUndoState(n),bn(n.startContainer,e._root,e),e._getRangeAndRemoveBookmark(n),o=n.endContainer,i=o.parentNode,n.collapsed&&"A"===i.nodeName&&!o.nextSibling&&n.endOffset===m(o)?n.setStartAfter(i):n.collapsed||(Tt(n,e._root),e._ensureBottomLine(),e.setSelection(n),e._updatePath(n,!0)),e.setSelection(n)},left:function(e){e._removeZWS()},right:function(e){e._removeZWS()}};tt&&ot&&(Mt["meta-left"]=function(e,t){t.preventDefault();var n=dn(e);n&&n.modify&&n.modify("move","backward","lineboundary")},Mt["meta-right"]=function(e,t){t.preventDefault();var n=dn(e);n&&n.modify&&n.modify("move","forward","lineboundary")}),tt||(Mt.pageup=function(e){e.moveCursorToStart()},Mt.pagedown=function(e){e.moveCursorToEnd()}),Mt[lt+"b"]=wt("B"),Mt[lt+"i"]=wt("I"),Mt[lt+"u"]=wt("U"),Mt[lt+"shift-7"]=wt("S"),Mt[lt+"shift-5"]=wt("SUB",{tag:"SUP"}),Mt[lt+"shift-6"]=wt("SUP",{tag:"SUB"}),Mt[lt+"shift-8"]=It("makeUnorderedList"),Mt[lt+"shift-9"]=It("makeOrderedList"),Mt[lt+"["]=It("decreaseQuoteLevel"),Mt[lt+"]"]=It("increaseQuoteLevel"),Mt[lt+"y"]=It("redo"),Mt[lt+"z"]=It("undo"),Mt[lt+"shift-z"]=It("redo");var Ht={1:10,2:13,3:16,4:18,5:24,6:32,7:48},Wt={backgroundColor:{regexp:pt,replace:function(e,t){return _(e,"SPAN",{"class":j,style:"background-color:"+t})}},color:{regexp:pt,replace:function(e,t){return _(e,"SPAN",{"class":Q,style:"color:"+t})}},fontWeight:{regexp:/^bold|^700/i,replace:function(e){return _(e,"B")}},fontStyle:{regexp:/^italic/i,replace:function(e){return _(e,"I")}},fontFamily:{regexp:pt,replace:function(e,t){return _(e,"SPAN",{"class":V,style:"font-family:"+t})}},fontSize:{regexp:pt,replace:function(e,t){return _(e,"SPAN",{"class":$,style:"font-size:"+t})}},textDecoration:{regexp:/^underline/i,replace:function(e){return _(e,"U")}}},zt=function(e){return function(t,n){var o=_(t.ownerDocument,e);return n.replaceChild(o,t),o.appendChild(N(t)),o}},qt=function(e,t){var n,o,i,r,a,s,d=e.style,l=e.ownerDocument;for(n in Wt)o=Wt[n],i=d[n],i&&o.regexp.test(i)&&(s=o.replace(l,i),a||(a=s),r&&r.appendChild(s),r=s,e.style[n]="");return a&&(r.appendChild(N(e)),"SPAN"===e.nodeName?t.replaceChild(a,e):e.appendChild(a)),r||e},Kt={P:qt,SPAN:qt,STRONG:zt("B"),EM:zt("I"),INS:zt("U"),STRIKE:zt("S"),FONT:function(e,t){var n,o,i,r,a,s=e.face,d=e.size,l=e.color,c=e.ownerDocument;return s&&(n=_(c,"SPAN",{"class":"font",style:"font-family:"+s}),a=n,r=n),d&&(o=_(c,"SPAN",{"class":"size",style:"font-size:"+Ht[d]+"px"}),a||(a=o),r&&r.appendChild(o),r=o),l&&/^#?([\dA-F]{3}){1,2}$/i.test(l)&&("#"!==l.charAt(0)&&(l="#"+l),i=_(c,"SPAN",{"class":"colour",style:"color:"+l}),a||(a=i),r&&r.appendChild(i),r=i),a||(a=r=_(c,"SPAN")),t.replaceChild(a,e),r.appendChild(N(e)),r},TT:function(e,t){var n=_(e.ownerDocument,"SPAN",{"class":"font",style:'font-family:menlo,consolas,"courier new",monospace'});return t.replaceChild(n,e),n.appendChild(N(e)),n}},Gt=/^(?:A(?:DDRESS|RTICLE|SIDE|UDIO)|BLOCKQUOTE|CAPTION|D(?:[DLT]|IV)|F(?:IGURE|IGCAPTION|OOTER)|H[1-6]|HEADER|L(?:ABEL|EGEND|I)|O(?:L|UTPUT)|P(?:RE)?|SECTION|T(?:ABLE|BODY|D|FOOT|H|HEAD|R)|COL(?:GROUP)?|UL)$/,Zt=/^(?:HEAD|META|STYLE)/,jt=new n(null,z|W,function(){return!0}),Qt=function Bn(e,t){var n,o,i,a,s,d,l,c,h,u,f,p,g=e.childNodes;for(n=e;r(n);)n=n.parentNode;for(jt.root=n,o=0,i=g.length;i>o;o+=1)if(a=g[o],s=a.nodeName,d=a.nodeType,l=Kt[s],d===w){if(c=a.childNodes.length,l)a=l(a,e);else{if(Zt.test(s)){e.removeChild(a),o-=1,i-=1;continue}if(!Gt.test(s)&&!r(a)){o-=1,i+=c-1,e.replaceChild(N(a),a);continue}}c&&Bn(a,t||"PRE"===s)}else{if(d===F){if(f=a.data,h=!pt.test(f.charAt(0)),u=!pt.test(f.charAt(f.length-1)),t||!h&&!u)continue;if(h){for(jt.currentNode=a;(p=jt.previousPONode())&&(s=p.nodeName,!("IMG"===s||"#text"===s&&pt.test(p.data)));)if(!r(p)){p=null;break}f=f.replace(/^[ \t\r\n]+/g,p?" ":"")}if(u){for(jt.currentNode=a;(p=jt.nextNode())&&!("IMG"===s||"#text"===s&&pt.test(p.data));)if(!r(p)){p=null;break}f=f.replace(/[ \t\r\n]+$/g,p?" ":"")}if(f){a.data=f;continue}}e.removeChild(a),o-=1,i-=1}return e},Vt=function xn(e){for(var t,n=e.childNodes,o=n.length;o--;)t=n[o],t.nodeType!==w||i(t)?t.nodeType!==F||t.data||e.removeChild(t):(xn(t),r(t)&&!t.firstChild&&e.removeChild(t))},$t=function(e){return e.nodeType===w?"BR"===e.nodeName:pt.test(e.data)},Yt=function(e){for(var t,o=e.parentNode;r(o);)o=o.parentNode;return t=new n(o,W|z,$t),t.currentNode=e,!!t.nextNode()},Xt=function(e,t){var n,o,i,a=e.querySelectorAll("BR"),s=[],d=a.length;for(n=0;d>n;n+=1)s[n]=Yt(a[n]);for(;d--;)o=a[d],i=o.parentNode,i&&(s[d]?r(i)||y(i,t):v(o))},Jt=function(e,t){var n=t.ownerDocument.body;t.setAttribute("style","position:fixed;overflow:hidden;bottom:100%;right:100%;"),n.appendChild(t),e.setData("text/html",t.innerHTML),e.setData("text/plain",t.innerText||t.textContent),n.removeChild(t)},en=function(e){var t=e.clipboardData,n=this.getSelection(),o=this.createElement("div"),i=this._root,r=this;this.saveUndoState(n),at||et||!t?setTimeout(function(){try{r._ensureBottomLine()}catch(e){r.didError(e)}},0):(Bt(n,i),o.appendChild(Tt(n,i)),Jt(t,o),e.preventDefault()),this.setSelection(n)},tn=function(e){var t,n,o,i,r,a,s=e.clipboardData,d=this.getSelection(),l=this.createElement("div"),c=this._root;if(!at&&!et&&s){for(d=d.cloneRange(),t=xt(d,c),n=Lt(d,c),o=t===n?t:c,kt(d),Bt(d,o),i=d.cloneContents(),r=d.commonAncestorContainer,r.nodeType===F&&(r=r.parentNode);r&&r!==o;)a=r.cloneNode(!1),a.appendChild(i),i=a,r=r.parentNode;l.appendChild(i),Jt(s,l),e.preventDefault()}},nn=function(e){var t,n,o,i,r,a=e.clipboardData,s=a&&a.items,d=this.isShiftDown,l=!1,c=!1,h=null,u=this;if(!at&&s){for(e.preventDefault(),t=s.length;t--;){if(n=s[t],o=n.type,!d&&"text/html"===o)return void n.getAsString(function(e){u.insertHTML(e,!0)});"text/plain"===o&&(h=n),!d&&/^image\/.*/.test(o)&&(c=!0)}return void(c?(this.fireEvent("dragover",{dataTransfer:a,preventDefault:function(){l=!0}}),l&&this.fireEvent("drop",{dataTransfer:a})):h&&n.getAsString(function(e){u.insertPlainText(e,!0)}))}if(i=a&&a.types,!at&&i&&(gt.call(i,"text/html")>-1||!ot&>.call(i,"text/plain")>-1&>.call(i,"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 f=this._doc.body,p=this.getSelection(),g=p.startContainer,m=p.startOffset,C=p.endContainer,N=p.endOffset,_=this.createElement("DIV",{contenteditable:"true",style:"position:fixed; overflow:hidden; top:0; right:100%; width:1px; height:1px;"});f.appendChild(_),p.selectNodeContents(_),this.setSelection(p),setTimeout(function(){try{u._awaitingPaste=!1;for(var e,t,n="",o=_;_=o;)o=_.nextSibling,v(_),e=_.firstChild,e&&e===_.lastChild&&"DIV"===e.nodeName&&(_=e),n+=_.innerHTML;t=u._createRange(g,m,C,N),u.setSelection(t),n&&u.insertHTML(n,!0)}catch(i){u.didError(i)}},0)},on=function(e){for(var t=e.dataTransfer.types,n=t.length,o=!1,i=!1;n--;)switch(t[n]){case"text/plain":o=!0;break;case"text/html":i=!0;break;default:return}(i||o)&&this.saveUndoState()},rn=[],an=O.prototype;an.setConfig=function(e){return e=A({blockTag:"DIV",blockAttributes:null,tagAttributes:{blockquote:null,ul:null,ol:null,li:null,a:null},leafNodeNames:Ct,undo:{documentSizeThreshold:-1,undoLimit:-1}},e,!0),e.blockTag=e.blockTag.toUpperCase(),this._config=e,this},an.createElement=function(e,t,n){return _(this._doc,e,t,n)},an.createDefaultBlock=function(e){var t=this._config;return S(this.createElement(t.blockTag,t.blockAttributes,e),this._root)},an.didError=function(e){console.log(e)},an.getDocument=function(){return this._doc},an.getRoot=function(){return this._root},an.modifyDocument=function(e){this._ignoreAllChanges=!0,this._mutation&&this._mutation.disconnect(),e(),this._ignoreAllChanges=!1,this._mutation&&(this._mutation.observe(this._root,{childList:!0,attributes:!0,characterData:!0,subtree:!0}),this._ignoreChange=!1)};var sn={pathChange:1,select:1,input:1,undoStateChange:1};an.fireEvent=function(e,t){var n,o,i,r=this._events[e];if(/^(?:focus|blur)/.test(e))if(n=p(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),r=r.slice(),o=r.length;o--;){i=r[o];try{i.handleEvent?i.handleEvent(t):i.call(this,t)}catch(a){a.details="Squire: fireEvent error. Event type: "+e,this.didError(a)}}return this},an.destroy=function(){var e,t=rn.length,n=this._events;for(e in n)this.removeEventListener(e);for(this._mutation&&this._mutation.disconnect();t--;)rn[t]===this&&rn.splice(t,1);this._undoIndex=-1,this._undoStack=[],this._undoStackLength=0},an.handleEvent=function(e){this.fireEvent(e.type,e)},an.addEventListener=function(e,t){var n=this._events[e],o=this._root;return t?(n||(n=this._events[e]=[],sn[e]||("selectionchange"===e&&(o=this._doc),o.addEventListener(e,this,!0))),n.push(t),this):(this.didError({name:"Squire: addEventListener with null or undefined fn",message:"Event type: "+e}),this)},an.removeEventListener=function(e,t){var n,o=this._events[e],i=this._root;if(o){if(t)for(n=o.length;n--;)o[n]===t&&o.splice(n,1);else o.length=0;o.length||(delete this._events[e],sn[e]||("selectionchange"===e&&(i=this._doc),i.removeEventListener(e,this,!0)))}return this},an._createRange=function(e,t,n,o){if(e instanceof this._win.Range)return e.cloneRange();var i=this._doc.createRange();return i.setStart(e,t),n?i.setEnd(n,o):i.setEnd(e,t),i},an.getCursorPosition=function(e){if(!e&&!(e=this.getSelection())||!e.getBoundingClientRect)return null;var t,n,o=e.getBoundingClientRect();return o&&!o.top&&(this._ignoreChange=!0,t=this._doc.createElement("SPAN"),t.textContent=Y,St(e,t),o=t.getBoundingClientRect(),n=t.parentNode,n.removeChild(t),E(n,e)),o},an._moveCursorTo=function(e){var t=this._root,n=this._createRange(t,e?0:t.childNodes.length);return kt(n),this.setSelection(n),this},an.moveCursorToStart=function(){return this._moveCursorTo(!0)},an.moveCursorToEnd=function(){return this._moveCursorTo(!1)};var dn=function(e){return e._win.getSelection()||null};an.setSelection=function(e){if(e)if(this._lastSelection=e,this._isFocused)if(nt&&!this._restoreSelection)R.call(this),this.blur(),this.focus();else{et&&this._win.focus();var t=dn(this);t&&(t.removeAllRanges(),t.addRange(e))}else R.call(this);return this},an.getSelection=function(){var e,t,n,o=dn(this),r=this._root;return o&&o.rangeCount&&(e=o.getRangeAt(0).cloneRange(),t=e.startContainer,n=e.endContainer,t&&i(t)&&e.setStartBefore(t),n&&i(n)&&e.setEndBefore(n)),e&&p(r,e.commonAncestorContainer)?this._lastSelection=e:e=this._lastSelection,e||(e=this._createRange(r.firstChild,0)),e},an.getSelectedText=function(){var e,t=this.getSelection(),o=new n(t.commonAncestorContainer,z|W,function(e){return Et(t,e,!0)}),i=t.startContainer,a=t.endContainer,s=o.currentNode=i,d="",l=!1;for(o.filter(s)||(s=o.nextNode());s;)s.nodeType===F?(e=s.data,e&&/\S/.test(e)&&(s===a&&(e=e.slice(0,t.endOffset)),s===i&&(e=e.slice(t.startOffset)),d+=e,l=!0)):("BR"===s.nodeName||l&&!r(s))&&(d+="\n",l=!1),s=o.nextNode();return d},an.getPath=function(){return this._path};var ln=function(e,t){for(var o,i,a,s=new n(e,z,function(){return!0},!1);i=s.nextNode();)for(;(a=i.data.indexOf(Y))>-1&&(!t||i.parentNode!==t);){if(1===i.length){do o=i.parentNode,o.removeChild(i),i=o,s.currentNode=o;while(r(i)&&!m(i));break}i.deleteData(a,1)}};an._didAddZWS=function(){this._hasZWS=!0},an._removeZWS=function(){this._hasZWS&&(ln(this._root),this._hasZWS=!1)},an._updatePath=function(e,t){var n,o=e.startContainer,i=e.endContainer;(t||o!==this._lastAnchorNode||i!==this._lastFocusNode)&&(this._lastAnchorNode=o,this._lastFocusNode=i,n=o&&i?o===i?g(i,this._root):"(selection)":"",this._path!==n&&(this._path=n,this.fireEvent("pathChange",{path:n}))),e.collapsed||this.fireEvent("select")},an._updatePathOnEvent=function(){var e=this;e._willUpdatePath||(e._willUpdatePath=!0,setTimeout(function(){e._willUpdatePath=!1,e._updatePath(e.getSelection())},0))},an.focus=function(){return this._root.focus(),dt&&this.fireEvent("focus"),this},an.blur=function(){return this._root.blur(),dt&&this.fireEvent("blur"),this};var cn="squire-selection-start",hn="squire-selection-end";an._saveRangeToBookmark=function(e){var t,n=this.createElement("INPUT",{id:cn,type:"hidden"}),o=this.createElement("INPUT",{id:hn,type:"hidden"});St(e,n),e.collapse(!1),St(e,o),n.compareDocumentPosition(o)&I&&(n.id=hn,o.id=cn,t=n,n=o,o=t),e.setStartAfter(n),e.setEndBefore(o)},an._getRangeAndRemoveBookmark=function(e){var t=this._root,n=t.querySelector("#"+cn),o=t.querySelector("#"+hn);if(n&&o){var i=n.parentNode,r=o.parentNode,a=gt.call(i.childNodes,n),s=gt.call(r.childNodes,o);i===r&&(s-=1),v(n),v(o),e||(e=this._doc.createRange()),e.setStart(i,a),e.setEnd(r,s),E(i,e),i!==r&&E(r,e),e.collapsed&&(i=e.startContainer,i.nodeType===F&&(r=i.childNodes[e.startOffset],r&&r.nodeType===F||(r=i.childNodes[e.startOffset-1]),r&&r.nodeType===F&&(e.setStart(r,0),e.collapse(!0))))}return e||null},an._keyUpDetectChange=function(e){var t=e.keyCode;e.ctrlKey||e.metaKey||e.altKey||!(16>t||t>20)||!(33>t||t>45)||this._docWasChanged()},an._docWasChanged=function(){if(!this._ignoreAllChanges){if(ft&&this._ignoreChange)return void(this._ignoreChange=!1);this._isInUndoState&&(this._isInUndoState=!1,this.fireEvent("undoStateChange",{canUndo:!0,canRedo:!1})),this.fireEvent("input")}},an._recordUndoState=function(e){if(!this._isInUndoState){var t,n=this._undoIndex+=1,o=this._undoStack,i=this._config.undo,r=i.documentSizeThreshold,a=i.undoLimit;n-1&&2*t.length>r&&a>-1&&n>a&&(o.splice(0,n-a),n=this._undoIndex=a,this._undoStackLength=a),o[n]=t,this._undoStackLength+=1,this._isInUndoState=!0}},an.saveUndoState=function(e){return e===t&&(e=this.getSelection()),this._isInUndoState||(this._recordUndoState(e),this._getRangeAndRemoveBookmark(e)),this},an.undo=function(){if(0!==this._undoIndex||!this._isInUndoState){this._recordUndoState(this.getSelection()),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},an.redo=function(){var e=this._undoIndex,t=this._undoStackLength;if(t>e+1&&this._isInUndoState){this._undoIndex+=1,this._setHTML(this._undoStack[this._undoIndex]);var n=this._getRangeAndRemoveBookmark();n&&this.setSelection(n),this.fireEvent("undoStateChange",{canUndo:!0,canRedo:t>e+2}),this.fireEvent("input")}return this},an.hasFormat=function(e,t,o){if(e=e.toUpperCase(),t||(t={}),!o&&!(o=this.getSelection()))return!1;!o.collapsed&&o.startContainer.nodeType===F&&o.startOffset===o.startContainer.length&&o.startContainer.nextSibling&&o.setStartBefore(o.startContainer.nextSibling),!o.collapsed&&o.endContainer.nodeType===F&&0===o.endOffset&&o.endContainer.previousSibling&&o.setEndAfter(o.endContainer.previousSibling);var i,r,a=this._root,s=o.commonAncestorContainer;if(f(s,a,e,t))return!0;if(s.nodeType===F)return!1;i=new n(s,z,function(e){return Et(o,e,!0)},!1);for(var d=!1;r=i.nextNode();){if(!f(r,a,e,t))return!1;d=!0}return d},an.getFontInfo=function(e){var n,o,i,r={color:t,backgroundColor:t,family:t,size:t},a=0;if(!e&&!(e=this.getSelection()))return r;if(n=e.commonAncestorContainer,e.collapsed||n.nodeType===F)for(n.nodeType===F&&(n=n.parentNode);4>a&&n;)(o=n.style)&&(!r.color&&(i=o.color)&&(r.color=i,a+=1),!r.backgroundColor&&(i=o.backgroundColor)&&(r.backgroundColor=i,a+=1),!r.family&&(i=o.fontFamily)&&(r.family=i,a+=1),!r.size&&(i=o.fontSize)&&(r.size=i,a+=1)),n=n.parentNode;return r},an._addFormat=function(e,t,o){var i,a,s,d,l,c,h,u,p,g=this._root;if(o.collapsed){for(i=S(this.createElement(e,t),g),St(o,i),o.setStart(i.firstChild,i.firstChild.length),o.collapse(!0),p=i;r(p);)p=p.parentNode;ln(p,i)}else{if(a=new n(o.commonAncestorContainer,z|W,function(e){return(e.nodeType===F||"BR"===e.nodeName||"IMG"===e.nodeName)&&Et(o,e,!0)},!1),s=o.startContainer,l=o.startOffset,d=o.endContainer,c=o.endOffset,a.currentNode=s,a.filter(s)||(s=a.nextNode(),l=0),!s)return o;do h=a.currentNode,u=!f(h,g,e,t),u&&(h===d&&h.length>c&&h.splitText(c),h===s&&l&&(h=h.splitText(l),d===s&&(d=h,c-=l),s=h,l=0),i=this.createElement(e,t),C(h,i),i.appendChild(h));while(a.nextNode());d.nodeType!==F&&(h.nodeType===F?(d=h,c=h.length):(d=h.parentNode,c=1)),o=this._createRange(s,l,d,c)}return o},an._removeFormat=function(e,t,n,o){this._saveRangeToBookmark(n);var i,a=this._doc;n.collapsed&&(ht?(i=a.createTextNode(Y),this._didAddZWS()):i=a.createTextNode(""),St(n,i));for(var s=n.commonAncestorContainer;r(s);)s=s.parentNode;var d=n.startContainer,l=n.startOffset,c=n.endContainer,h=n.endOffset,f=[],p=function(e,t){if(!Et(n,e,!1)){var o,i,r=e.nodeType===F;if(!Et(n,e,!0))return void("INPUT"===e.nodeName||r&&!e.data||f.push([t,e]));if(r)e===c&&h!==e.length&&f.push([t,e.splitText(h)]),e===d&&l&&(e.splitText(l),f.push([t,e]));else for(o=e.firstChild;o;o=i)i=o.nextSibling,p(o,t)}},g=Array.prototype.filter.call(s.getElementsByTagName(e),function(o){return Et(n,o,!0)&&u(o,e,t)});return o||g.forEach(function(e){p(e,e)}),f.forEach(function(e){var t=e[0].cloneNode(!1),n=e[1];C(n,t),t.appendChild(n)}),g.forEach(function(e){C(e,N(e))}),this._getRangeAndRemoveBookmark(n),i&&n.collapse(!1),E(s,n),n},an.changeFormat=function(e,t,n,o){return n||(n=this.getSelection())?(this.saveUndoState(n),t&&(n=this._removeFormat(t.tag.toUpperCase(),t.attributes||{},n,o)),e&&(n=this._addFormat(e.tag.toUpperCase(),e.attributes||{},n)),this.setSelection(n),this._updatePath(n,!0),ft||this._docWasChanged(),this):this};var un={DT:"DD",DD:"DT",LI:"LI"},fn=function(e,t,n,o){var i=un[t.nodeName],r=null,a=T(n,o,t.parentNode,e._root),s=e._config;return i||(i=s.blockTag,r=s.blockAttributes),u(a,i,r)||(t=_(a.ownerDocument,i,r),a.dir&&(t.dir=a.dir),C(a,t),t.appendChild(N(a)),a=t),a};an.forEachBlock=function(e,t,n){if(!n&&!(n=this.getSelection()))return this;t&&this.saveUndoState(n);var o=this._root,i=xt(n,o),r=Lt(n,o);if(i&&r)do if(e(i)||i===r)break;while(i=c(i,o));return t&&(this.setSelection(n),this._updatePath(n,!0),ft||this._docWasChanged()),this},an.modifyBlocks=function(e,t){if(!t&&!(t=this.getSelection()))return this;this._isInUndoState?this._saveRangeToBookmark(t):this._recordUndoState(t);var n,o=this._root;return Dt(t,o),Bt(t,o),n=yt(t,o,o),St(t,e.call(this,n)),t.endOffsett;t+=1)o=s[t],i=N(o),y(i,l),C(o,i);for(t=0,n=d.length;n>t;t+=1)r=d[t],a(r)?C(r,this.createDefaultBlock([N(r)])):(y(r,l),C(r,N(r)));return e},Sn=function(e){var t,n,o,i,r,a,d=e.querySelectorAll("LI"),l=this._config.tagAttributes;for(t=0,n=d.length;n>t;t+=1)o=d[t],s(o.firstChild)||(i=o.parentNode.nodeName,r=o.previousSibling,r&&(r=r.lastChild)&&r.nodeName===i||(a=l[i.toLowerCase()],r=this.createElement(i,a),C(o,r)),r.appendChild(o));return e},yn=function(e){var t=this._root,n=e.querySelectorAll("LI");return Array.prototype.filter.call(n,function(e){return!s(e.firstChild)}).forEach(function(n){var o,i=n.parentNode,r=i.parentNode,a=n.firstChild,d=a;if(n.previousSibling&&(i=T(i,n,r,t)),/^[OU]L$/.test(r.nodeName))r.insertBefore(n,i),i.firstChild||r.removeChild(i);else for(;d&&(o=d.nextSibling,!s(d));)r.insertBefore(d,i),d=o;for("LI"===r.nodeName&&a.previousSibling&&T(r,a,r.parentNode,t);n!==e&&!n.childNodes.length;)i=n.parentNode,i.removeChild(n),n=i},this),y(e,t),e};an._ensureBottomLine=function(){var e=this._root,t=e.lastElementChild;t&&t.nodeName===this._config.blockTag&&a(t)||e.appendChild(this.createDefaultBlock())},an.setKeyHandler=function(e,t){return this._keyHandlers[e]=t,this},an._getHTML=function(){return this._root.innerHTML},an._setHTML=function(e){var t=this._root,n=t;n.innerHTML=e;do S(n,t);while(n=c(n,t));this._ignoreChange=!0},an.getHTML=function(e){var t,n,o,i,r,a,s=[];if(e&&(a=this.getSelection())&&this._saveRangeToBookmark(a),ct)for(t=this._root,n=t;n=c(n,t);)n.textContent||n.querySelector("BR")||(o=this.createElement("BR"),n.appendChild(o),s.push(o));if(i=this._getHTML().replace(/\u200B/g,""),ct)for(r=s.length;r--;)v(s[r]);return a&&this._getRangeAndRemoveBookmark(a),i},an.setHTML=function(e){var t,n=this._doc.createDocumentFragment(),o=this.createElement("DIV"),i=this._root;o.innerHTML=e,n.appendChild(N(o)),Qt(n),Xt(n,i),y(n,i);for(var r=n;r=c(r,i);)S(r,i);for(this._ignoreChange=!0;t=i.lastChild;)i.removeChild(t);i.appendChild(n),S(i,i),this._undoIndex=-1,this._undoStack.length=0,this._undoStackLength=0,this._isInUndoState=!1;var a=this._getRangeAndRemoveBookmark()||this._createRange(i.firstChild,0);return this.saveUndoState(a),this._lastSelection=a,R.call(this),this._updatePath(a,!0),this},an.insertElement=function(e,t){if(t||(t=this.getSelection()),t.collapse(!0),r(e))St(t,e),t.setStartAfter(e);else{for(var n,o,i=this._root,a=xt(t,i)||i;a!==i&&!a.nextSibling;)a=a.parentNode;a!==i&&(n=a.parentNode,o=T(n,a.nextSibling,i,i)),o?i.insertBefore(e,o):(i.appendChild(e),o=this.createDefaultBlock(),i.appendChild(o)),t.setStart(o,0),t.setEnd(o,0),kt(t)}return this.focus(),this.setSelection(t),this._updatePath(t),ft||this._docWasChanged(),this},an.insertImage=function(e,t){var n=this.createElement("IMG",A({src:e},t,!0));return this.insertElement(n),n};var Tn=/\b((?:(?:ht|f)tps?:\/\/|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,}\/)(?:[^\s()<>]+|\([^\s()<>]+\))+(?:\((?:[^\s()<>]+|(?:\([^\s()<>]+\)))*\)|[^\s`!()\[\]{};:'".,<>?«»“”‘’]))|([\w\-.%+]+@(?:[\w\-]+\.)+[A-Z]{2,}\b)/i,bn=function(e,t,o){for(var i,r,a,s,d,l,c,h=e.ownerDocument,u=new n(e,z,function(e){return!f(e,t,"A")},!1),p=o._config.tagAttributes.a;i=u.nextNode();)for(r=i.data,a=i.parentNode;s=Tn.exec(r);)d=s.index,l=d+s[0].length,d&&(c=h.createTextNode(r.slice(0,d)),a.insertBefore(c,i)),c=o.createElement("A",A({href:s[1]?/^(?:ht|f)tps?:/.test(s[1])?s[1]:"http://"+s[1]:"mailto:"+s[2]},p,!1)),c.textContent=r.slice(d,l),a.insertBefore(c,i),i.data=r=r.slice(l)};an.insertHTML=function(e,t){var n,o,i,r,a,s,d,l=this.getSelection(),h=this._doc;"undefined"!=typeof DOMPurify&&DOMPurify.isSupported?(r=DOMPurify.sanitize(e,{WHOLE_DOCUMENT:!1,RETURN_DOM:!0,RETURN_DOM_FRAGMENT:!0}),r=h.importNode(r,!0)):(t&&(n=e.indexOf(""),o=e.lastIndexOf(""),n>-1&&o>-1&&(e=e.slice(n+20,o))),i=this.createElement("DIV"),i.innerHTML=e,r=h.createDocumentFragment(),r.appendChild(N(i))),this.saveUndoState(l);try{for(a=this._root,s=r,d={fragment:r,preventDefault:function(){this.defaultPrevented=!0},defaultPrevented:!1},bn(r,r,this),Qt(r),Xt(r,null),Vt(r),r.normalize();s=c(s,r);)S(s,null);t&&this.fireEvent("willPaste",d),d.defaultPrevented||(bt(l,d.fragment,a),ft||this._docWasChanged(),l.collapse(!1),this._ensureBottomLine()),this.setSelection(l),this._updatePath(l,!0),t&&this.focus()}catch(u){this.didError(u)}return this};var En=function(e){return e.split("&").join("&").split("<").join("<").split(">").join(">").split('"').join(""")};an.insertPlainText=function(e,t){var n,o,i,r,a=e.split("\n"),s=this._config,d=s.blockTag,l=s.blockAttributes,c="",h="<"+d;for(n in l)h+=" "+n+'="'+En(l[n])+'"';for(h+=">",o=0,i=a.length;i>o;o+=1)r=a[o],r=En(r).replace(/ (?= )/g," "),o&&i>o+1&&(r=h+(r||"
")+c),a[o]=r;return this.insertHTML(a.join(""),t)};var kn=function(e,t,n){return function(){return this[e](t,n),this.focus()}};an.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},an.bold=kn("changeFormat",{tag:"B"}),an.italic=kn("changeFormat",{tag:"I"}),an.underline=kn("changeFormat",{tag:"U"}),an.strikethrough=kn("changeFormat",{tag:"S"}),an.subscript=kn("changeFormat",{tag:"SUB"},{tag:"SUP"}),an.superscript=kn("changeFormat",{tag:"SUP"},{tag:"SUB"}),an.removeBold=kn("changeFormat",null,{tag:"B"}),an.removeItalic=kn("changeFormat",null,{tag:"I"}),an.removeUnderline=kn("changeFormat",null,{tag:"U"}),an.removeStrikethrough=kn("changeFormat",null,{tag:"S"}),an.removeSubscript=kn("changeFormat",null,{tag:"SUB"}),an.removeSuperscript=kn("changeFormat",null,{tag:"SUP"}),an.makeLink=function(e,t){var n=this.getSelection();if(n.collapsed){var o=e.indexOf(":")+1;if(o)for(;"/"===e[o];)o+=1;St(n,this._doc.createTextNode(e.slice(o)))}return t=A(A({href:e},t,!0),this._config.tagAttributes.a,!1),this.changeFormat({tag:"A",attributes:t},{tag:"A"},n),this.focus()},an.removeLink=function(){return this.changeFormat(null,{tag:"A"},this.getSelection(),!0),this.focus()},an.setFontFace=function(e){return this.changeFormat(e?{tag:"SPAN",attributes:{"class":"font",style:"font-family: "+e+", sans-serif;"}}:null,{tag:"SPAN",attributes:{"class":"font"}}),this.focus()},an.setFontSize=function(e){return this.changeFormat(e?{tag:"SPAN",attributes:{"class":"size",style:"font-size: "+("number"==typeof e?e+"px":e)}}:null,{tag:"SPAN",attributes:{"class":"size"}}),this.focus()},an.setTextColour=function(e){return this.changeFormat(e?{tag:"SPAN",attributes:{"class":"colour",style:"color:"+e}}:null,{tag:"SPAN",attributes:{"class":"colour"}}),this.focus()},an.setHighlightColour=function(e){return this.changeFormat(e?{tag:"SPAN",attributes:{"class":"highlight",style:"background-color:"+e}}:e,{tag:"SPAN",attributes:{"class":"highlight"}}),this.focus()},an.setTextAlignment=function(e){return this.forEachBlock(function(t){t.className=(t.className.split(/\s+/).filter(function(e){return!/align/.test(e)}).join(" ")+" align-"+e).trim(),t.style.textAlign=e},!0),this.focus()},an.setTextDirection=function(e){return this.forEachBlock(function(t){t.dir=e},!0),this.focus()},an.removeAllFormatting=function(e){if(!e&&!(e=this.getSelection())||e.collapsed)return this;for(var t=this._root,n=e.commonAncestorContainer;n&&!a(n);)n=n.parentNode;if(n||(Dt(e,t),n=t),n.nodeType===F)return this;this.saveUndoState(e),Bt(e,n);for(var o,i,r=n.ownerDocument,s=e.startContainer,d=e.startOffset,l=e.endContainer,c=e.endOffset,h=r.createDocumentFragment(),u=r.createDocumentFragment(),f=T(l,c,n,t),p=T(s,d,n,t);p!==f;)o=p.nextSibling,h.appendChild(p),p=o;return P(this,h,u),u.normalize(),p=u.firstChild,o=u.lastChild,i=n.childNodes,p?(n.insertBefore(u,f),d=gt.call(i,p),c=gt.call(i,o)+1):(d=gt.call(i,f),c=d),e.setStart(n,d),e.setEnd(n,c),E(n,e),kt(e),this.setSelection(e),this._updatePath(e,!0),this.focus()},an.increaseQuoteLevel=kn("modifyBlocks",pn),an.decreaseQuoteLevel=kn("modifyBlocks",gn),an.makeUnorderedList=kn("modifyBlocks",Cn),an.makeOrderedList=kn("modifyBlocks",Nn),an.removeList=kn("modifyBlocks",_n),an.increaseListLevel=kn("modifyBlocks",Sn),an.decreaseListLevel=kn("modifyBlocks",yn),O.getNodeBefore=Nt,O.getNodeAfter=_t,O.insertNodeInRange=St,O.extractContentsOfRange=yt,O.deleteContentsOfRange=Tt,O.insertTreeFragmentIntoRange=bt,O.isNodeContainedInRange=Et,O.moveRangeBoundariesDownTree=kt,O.moveRangeBoundariesUpTree=Bt,O.getStartBlockOfRange=xt,O.getEndBlockOfRange=Lt,O.contentWalker=At,O.rangeDoesStartAtBlockBoundary=Ot,O.rangeDoesEndAtBlockBoundary=Rt,O.expandRangeToBlockBoundaries=Dt,O.onPaste=nn,O.addLinks=bn,O.splitBlock=fn,O.startSelectionId=cn,O.endSelectionId=hn,"object"==typeof exports?module.exports=O:"function"==typeof define&&define.amd?define(function(){return O}):(X.Squire=O,top!==X&&"true"===e.documentElement.getAttribute("data-squireinit")&&(X.editor=new O(e),X.onEditorLoad&&(X.onEditorLoad(X.editor),X.onEditorLoad=null)))}(document); \ No newline at end of file +!function(e,t){"use strict";function n(e,t,n){this.root=this.currentNode=e,this.nodeType=t,this.filter=n}function o(e,t){for(var n=e.length;n--;)if(!t(e[n]))return!1;return!0}function r(e){return e.nodeType===F&&!!_t[e.nodeName]}function i(e){if(gt&&Et.has(e))return Et.get(e);var t,n=e.nodeType;return t=n===M?yt:n!==F&&n!==W?St:o(e.childNodes,a)?Nt.test(e.nodeName)?yt:Tt:bt,gt&&Et.set(e,t),t}function a(e){return i(e)===yt}function s(e){return i(e)===Tt}function d(e){return i(e)===bt}function l(e,t){var o=new n(t,z,s);return o.currentNode=e,o}function c(e,t){return e=l(e,t).previousNode(),e!==t?e:null}function h(e,t){return e=l(e,t).nextNode(),e!==t?e:null}function u(e,t){return!r(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 f(e,t,n){if(e.nodeName!==t)return!1;for(var o in n)if(e.getAttribute(o)!==n[o])return!1;return!0}function p(e,t,n,o){for(;e&&e!==t;){if(f(e,n,o))return e;e=e.parentNode}return null}function g(e,t){for(;t;){if(t===e)return!0;t=t.parentNode}return!1}function m(e,t){var n,o,r,i,a="";return e&&e!==t&&(a=m(e.parentNode,t),e.nodeType===F&&(a+=(a?">":"")+e.nodeName,(n=e.id)&&(a+="#"+n),(o=e.className.trim())&&(r=o.split(/\s\s*/),r.sort(),a+=".",a+=r.join(".")),(i=e.dir)&&(a+="[dir="+i+"]"),r&&(vt.call(r,Q)>-1&&(a+="[backgroundColor="+e.style.backgroundColor.replace(/ /g,"")+"]"),vt.call(r,V)>-1&&(a+="[color="+e.style.color.replace(/ /g,"")+"]"),vt.call(r,$)>-1&&(a+="[fontFamily="+e.style.fontFamily.replace(/ /g,"")+"]"),vt.call(r,Y)>-1&&(a+="[fontSize="+e.style.fontSize+"]")))),a}function v(e){var t=e.nodeType;return t===F?e.childNodes.length:e.length||0}function C(e){var t=e.parentNode;return t&&t.removeChild(e),e}function N(e,t){var n=e.parentNode;n&&n.replaceChild(t,e)}function _(e){for(var t=e.ownerDocument.createDocumentFragment(),n=e.childNodes,o=n?n.length:0;o--;)t.appendChild(e.firstChild);return t}function S(e,n,o,r){var i,a,s,d,l=e.createElement(n);if(o instanceof Array&&(r=o,o=null),o)for(i in o)a=o[i],a!==t&&l.setAttribute(i,o[i]);if(r)for(s=0,d=r.length;d>s;s+=1)l.appendChild(r[s]);return l}function y(e,t){var n,o,i=e.ownerDocument,s=e;if(e===t&&((o=e.firstChild)&&"BR"!==o.nodeName||(n=A(i).createDefaultBlock(),o?e.replaceChild(n,o):e.appendChild(n),e=n,n=null)),e.nodeType===M)return s;if(a(e)){for(o=e.firstChild;ut&&o&&o.nodeType===M&&!o.data;)e.removeChild(o),o=e.firstChild;o||(ut?(n=i.createTextNode(X),A(i)._didAddZWS()):n=i.createTextNode(""))}else if(ht){for(;e.nodeType!==M&&!r(e);){if(o=e.firstChild,!o){n=i.createTextNode("");break}e=o}e.nodeType===M?/^ +$/.test(e.data)&&(e.data=""):r(e)&&e.parentNode.insertBefore(i.createTextNode(""),e)}else if(!e.querySelector("BR"))for(n=S(i,"BR");(o=e.lastElementChild)&&!a(o);)e=o;if(n)try{e.appendChild(n)}catch(d){A(i).didError({name:"Squire: fixCursor – "+d,message:"Parent: "+e.nodeName+"/"+e.innerHTML+" appendChild: "+n.nodeName})}return s}function T(e,t){var n,o,r,i,s=e.childNodes,l=e.ownerDocument,c=null,h=A(l)._config;for(n=0,o=s.length;o>n;n+=1)r=s[n],i="BR"===r.nodeName,!i&&a(r)?(c||(c=S(l,h.blockTag,h.blockAttributes)),c.appendChild(r),n-=1,o-=1):(i||c)&&(c||(c=S(l,h.blockTag,h.blockAttributes)),y(c,t),i?e.replaceChild(c,r):(e.insertBefore(c,r),n+=1,o+=1),c=null),d(r)&&T(r,t);return c&&e.appendChild(y(c,t)),e}function b(e,t,n,o){var r,i,a,s=e.nodeType;if(s===M&&e!==n)return b(e.parentNode,e.splitText(t),n,o);if(s===F){if("number"==typeof t&&(t=ts?t.startOffset-=1:t.startOffset===s&&(t.startContainer=o,t.startOffset=v(o))),t.endContainer===e&&(t.endOffset>s?t.endOffset-=1:t.endOffset===s&&(t.endContainer=o,t.endOffset=v(o))),C(n),n.nodeType===M?o.appendData(n.data):d.push(_(n));else if(n.nodeType===F){for(r=d.length;r--;)n.appendChild(d.pop());E(n,t)}}function k(e,t){if(e.nodeType===M&&(e=e.parentNode),e.nodeType===F){var n={startContainer:t.startContainer,startOffset:t.startOffset,endContainer:t.endContainer,endOffset:t.endOffset};E(e,n),t.setStart(n.startContainer,n.startOffset),t.setEnd(n.endContainer,n.endOffset)}}function B(e,t,n){for(var o,r,i=t;1===i.parentNode.childNodes.length;)i=i.parentNode;C(i),r=e.childNodes.length,o=e.lastChild,o&&"BR"===o.nodeName&&(e.removeChild(o),r-=1),e.appendChild(_(t)),n.setStart(e,r),n.collapse(!0),k(e,n),at&&(o=e.lastChild)&&"BR"===o.nodeName&&e.removeChild(o)}function x(e,t){var n,o,r=e.previousSibling,i=e.firstChild,a=e.ownerDocument,s="LI"===e.nodeName;if(!s||i&&/^[OU]L$/.test(i.nodeName))if(r&&u(r,e)){if(!d(r)){if(!s)return;o=S(a,"DIV"),o.appendChild(_(r)),r.appendChild(o)}C(e),n=!d(e),r.appendChild(_(e)),n&&T(r,t),i&&x(i,t)}else s&&(r=S(a,"DIV"),e.insertBefore(r,i),y(r,t))}function L(e){this.isShiftDown=e.shiftKey}function A(e){for(var t,n=un.length;n--;)if(t=un[n],t._doc===e)return t;return null}function O(e,t,n){var o,r;if(e||(e={}),t)for(o in t)!n&&o in e||(r=t[o],e[o]=r&&r.constructor===Object?O(e[o],r,n):r);return e}function R(e,t){e.nodeType===H&&(e=e.body);var n,o=e.ownerDocument,r=o.defaultView;this._win=r,this._doc=o,this._root=e,this._events={},this._isFocused=!1,this._lastSelection=null,ft&&this.addEventListener("beforedeactivate",this.getSelection),this._hasZWS=!1,this._lastAnchorNode=null,this._lastFocusNode=null,this._path="",this._willUpdatePath=!1,"onselectionchange"in o?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,pt?(n=new MutationObserver(this._docWasChanged.bind(this)),n.observe(e,{childList:!0,attributes:!0,characterData:!0,subtree:!0}),this._mutation=n):this.addEventListener("keyup",this._keyUpDetectChange),this._restoreSelection=!1,this.addEventListener("blur",D),this.addEventListener("mousedown",U),this.addEventListener("touchstart",U),this.addEventListener("focus",P),this._awaitingPaste=!1,this.addEventListener(it?"beforecut":"cut",dn),this.addEventListener("copy",ln),this.addEventListener("keydown",L),this.addEventListener("keyup",L),this.addEventListener(it?"beforepaste":"paste",cn),this.addEventListener("drop",hn),this.addEventListener(at?"keypress":"keydown",zt),this._keyHandlers=Object.create(Zt),this.setConfig(t),it&&(r.Text.prototype.splitText=function(e){var t=this.ownerDocument.createTextNode(this.data.slice(e)),n=this.nextSibling,o=this.parentNode,r=this.length-e;return n?o.insertBefore(t,n):o.appendChild(t),r&&this.deleteData(e,r),t}),e.setAttribute("contenteditable","true");try{o.execCommand("enableObjectResizing",!1,"false"),o.execCommand("enableInlineTableEditing",!1,"false")}catch(i){}un.push(this),this.setHTML("")}function D(){this._restoreSelection=!0}function U(){this._restoreSelection=!1}function P(){this._restoreSelection&&this.setSelection(this._lastSelection)}function I(e,t,n){var o,r;for(o=t.firstChild;o;o=r){if(r=o.nextSibling,a(o)){if(o.nodeType===M||"BR"===o.nodeName||"IMG"===o.nodeName){n.appendChild(o);continue}}else if(s(o)){n.appendChild(e.createDefaultBlock([I(e,o,e._doc.createDocumentFragment())]));continue}I(e,o,n)}return n}var w=2,F=1,M=3,H=9,W=11,z=1,q=4,K=0,G=1,Z=2,j=3,Q="highlight",V="colour",$="font",Y="size",X="​",J=e.defaultView,et=navigator.userAgent,tt=/iP(?:ad|hone|od)/.test(et),nt=/Mac OS X/.test(et),ot=/Android/.test(et),rt=/Gecko\//.test(et),it=/Trident\/[456]\./.test(et),at=!!J.opera,st=/Edge\//.test(et),dt=!st&&/WebKit\//.test(et),lt=/Trident\/[4567]\./.test(et),ct=nt?"meta-":"ctrl-",ht=it||at,ut=it||dt,ft=it,pt="undefined"!=typeof MutationObserver,gt="undefined"!=typeof WeakMap,mt=/[^ \t\r\n]/,vt=Array.prototype.indexOf;Object.create||(Object.create=function(e){var t=function(){};return t.prototype=e,new t});var Ct={1:1,2:2,3:4,8:128,9:256,11:1024};n.prototype.nextNode=function(){for(var e,t=this.currentNode,n=this.root,o=this.nodeType,r=this.filter;;){for(e=t.firstChild;!e&&t&&t!==n;)e=t.nextSibling,e||(t=t.parentNode);if(!e)return null;if(Ct[e.nodeType]&o&&r(e))return this.currentNode=e,e;t=e}},n.prototype.previousNode=function(){for(var e,t=this.currentNode,n=this.root,o=this.nodeType,r=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(Ct[e.nodeType]&o&&r(e))return this.currentNode=e,e;t=e}},n.prototype.previousPONode=function(){for(var e,t=this.currentNode,n=this.root,o=this.nodeType,r=this.filter;;){for(e=t.lastChild;!e&&t&&t!==n;)e=t.previousSibling,e||(t=t.parentNode);if(!e)return null;if(Ct[e.nodeType]&o&&r(e))return this.currentNode=e,e;t=e}};var Nt=/^(?:#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)$/,_t={BR:1,HR:1,IFRAME:1,IMG:1,INPUT:1},St=0,yt=1,Tt=2,bt=3,Et=gt?new WeakMap:null,kt=function(e,t){for(var n=e.childNodes;t&&e.nodeType===F;)e=n[t-1],n=e.childNodes,t=n.length;return e},Bt=function(e,t){if(e.nodeType===F){var n=e.childNodes;if(t-1,i=e.compareBoundaryPoints(G,o)<1;return!r&&!i}var a=e.compareBoundaryPoints(K,o)<1,s=e.compareBoundaryPoints(Z,o)>-1;return a&&s},Dt=function(e){for(var t,n=e.startContainer,o=e.startOffset,i=e.endContainer,a=e.endOffset,s=!0;n.nodeType!==M&&(t=n.childNodes[o],t&&!r(t));)n=t,o=0;if(a)for(;i.nodeType!==M;){if(t=i.childNodes[a-1],!t||r(t)){if(s&&t&&"BR"===t.nodeName){a-=1,s=!1;continue}break}i=t,a=v(i)}else for(;i.nodeType!==M&&(t=i.firstChild,t&&!r(t));)i=t;e.collapsed?(e.setStart(i,a),e.setEnd(n,o)):(e.setStart(n,o),e.setEnd(i,a))},Ut=function(e,t){var n,o=e.startContainer,r=e.startOffset,i=e.endContainer,a=e.endOffset,s=!0;for(t||(t=e.commonAncestorContainer);o!==t&&!r;)n=o.parentNode,r=vt.call(n.childNodes,o),o=n;for(;;){if(s&&i.nodeType!==M&&i.childNodes[a]&&"BR"===i.childNodes[a].nodeName&&(a+=1,s=!1),i===t||a!==v(i))break;n=i.parentNode,a=vt.call(n.childNodes,i)+1,i=n}e.setStart(o,r),e.setEnd(i,a)},Pt=function(e,t){var n,o=e.startContainer;return a(o)?n=c(o,t):o!==t&&s(o)?n=o:(n=kt(o,e.startOffset),n=h(n,t)),n&&Rt(e,n,!0)?n:null},It=function(e,t){var n,o,r=e.endContainer;if(a(r))n=c(r,t);else if(r!==t&&s(r))n=r;else{if(n=Bt(r,e.endOffset),!n||!g(t,n))for(n=t;o=n.lastChild;)n=o;n=c(n,t)}return n&&Rt(e,n,!0)?n:null},wt=new n(null,q|z,function(e){return e.nodeType===M?mt.test(e.data):"IMG"===e.nodeName}),Ft=function(e,t){var n,o=e.startContainer,r=e.startOffset;if(wt.root=null,o.nodeType===M){if(r)return!1;n=o}else if(n=Bt(o,r),n&&!g(t,n)&&(n=null),!n&&(n=kt(o,r),n.nodeType===M&&n.length))return!1;return wt.currentNode=n,wt.root=Pt(e,t),!wt.previousNode()},Mt=function(e,t){var n,o=e.endContainer,r=e.endOffset;if(wt.root=null,o.nodeType===M){if(n=o.data.length,n&&n>r)return!1;wt.currentNode=o}else wt.currentNode=kt(o,r);return wt.root=It(e,t),!wt.nextNode()},Ht=function(e,t){var n,o=Pt(e,t),r=It(e,t);o&&r&&(n=o.parentNode,e.setStart(n,vt.call(n.childNodes,o)),n=r.parentNode,e.setEnd(n,vt.call(n.childNodes,r)+1))},Wt={8:"backspace",9:"tab",13:"enter",32:"space",33:"pageup",34:"pagedown",37:"left",39:"right",46:"delete",219:"[",221:"]"},zt=function(e){var t=e.keyCode,n=Wt[t],o="",r=this.getSelection();e.defaultPrevented||(n||(n=String.fromCharCode(t).toLowerCase(),/^[A-Za-z0-9]$/.test(n)||(n="")),at&&46===e.which&&(n="."),t>111&&124>t&&(n="f"+(t-111)),"backspace"!==n&&"delete"!==n&&(e.altKey&&(o+="alt-"),e.ctrlKey&&(o+="ctrl-"),e.metaKey&&(o+="meta-")),e.shiftKey&&(o+="shift-"),n=o+n,this._keyHandlers[n]?this._keyHandlers[n](this,e,r):1!==n.length||r.collapsed||(this.saveUndoState(r),At(r,this._root),this._ensureBottomLine(),this.setSelection(r),this._updatePath(r,!0)))},qt=function(e){return function(t,n){n.preventDefault(),t[e]()}},Kt=function(e,t){return t=t||null,function(n,o){o.preventDefault();var r=n.getSelection();n.hasFormat(e,null,r)?n.changeFormat(null,{tag:e},r):n.changeFormat({tag:e},t,r)}},Gt=function(e,t){try{t||(t=e.getSelection());var n,o=t.startContainer;for(o.nodeType===M&&(o=o.parentNode),n=o;a(n)&&(!n.textContent||n.textContent===X);)o=n,n=o.parentNode;o!==n&&(t.setStart(n,vt.call(n.childNodes,o)),t.collapse(!0),n.removeChild(o),s(n)||(n=c(n,e._root)),y(n,e._root),Dt(t)),o===e._root&&(o=o.firstChild)&&"BR"===o.nodeName&&C(o),e._ensureBottomLine(),e.setSelection(t),e._updatePath(t,!0)}catch(r){e.didError(r)}},Zt={enter:function(e,t,n){var o,r,i,a=e._root;if(t.preventDefault(),e._recordUndoState(n),On(n.startContainer,a,e),e._removeZWS(),e._getRangeAndRemoveBookmark(n),n.collapsed||At(n,a),o=Pt(n,a),!o||/^T[HD]$/.test(o.nodeName))return xt(n,e.createElement("BR")),n.collapse(!1),e.setSelection(n),void e._updatePath(n,!0);if((r=p(o,a,"LI"))&&(o=r),!o.textContent){if(p(o,a,"UL")||p(o,a,"OL"))return e.modifyBlocks(Ln,n);if(p(o,a,"BLOCKQUOTE"))return e.modifyBlocks(Tn,n)}for(i=_n(e,o,n.startContainer,n.startOffset),mn(o),nn(o),y(o,a);i.nodeType===F;){var s,d=i.firstChild;if("A"===i.nodeName&&(!i.textContent||i.textContent===X)){d=e._doc.createTextNode(""),N(i,d),i=d;break}for(;d&&d.nodeType===M&&!d.data&&(s=d.nextSibling,s&&"BR"!==s.nodeName);)C(d),d=s;if(!d||"BR"===d.nodeName||d.nodeType===M&&!at)break;i=d}n=e._createRange(i,0),e.setSelection(n),e._updatePath(n,!0)},backspace:function(e,t,n){var o=e._root;if(e._removeZWS(),e.saveUndoState(n),n.collapsed)if(Ft(n,o)){t.preventDefault();var r,i=Pt(n,o);if(!i)return;if(T(i.parentNode,o),r=c(i,o)){if(!r.isContentEditable)return void C(r);for(B(r,i,n),i=r.parentNode;i!==o&&!i.nextSibling;)i=i.parentNode;i!==o&&(i=i.nextSibling)&&x(i,o),e.setSelection(n)}else if(i){if(p(i,o,"UL")||p(i,o,"OL"))return e.modifyBlocks(Ln,n);if(p(i,o,"BLOCKQUOTE"))return e.modifyBlocks(yn,n);e.setSelection(n),e._updatePath(n,!0)}}else e.setSelection(n),setTimeout(function(){Gt(e)},0);else t.preventDefault(),At(n,o),Gt(e,n)},"delete":function(e,t,n){var o,r,i,a,s,d,l=e._root;if(e._removeZWS(),e.saveUndoState(n),n.collapsed)if(Mt(n,l)){if(t.preventDefault(),o=Pt(n,l),!o)return;if(T(o.parentNode,l),r=h(o,l)){if(!r.isContentEditable)return void C(r);for(B(o,r,n),r=o.parentNode;r!==l&&!r.nextSibling;)r=r.parentNode;r!==l&&(r=r.nextSibling)&&x(r,l),e.setSelection(n),e._updatePath(n,!0)}}else{if(i=n.cloneRange(),Ut(n,e._root),a=n.endContainer,s=n.endOffset,a.nodeType===F&&(d=a.childNodes[s],d&&"IMG"===d.nodeName))return t.preventDefault(),C(d),Dt(n),void Gt(e,n);e.setSelection(i),setTimeout(function(){Gt(e)},0)}else t.preventDefault(),At(n,l),Gt(e,n)},tab:function(e,t,n){var o,r,i=e._root;if(e._removeZWS(),n.collapsed&&Ft(n,i))for(o=Pt(n,i);r=o.parentNode;){if("UL"===r.nodeName||"OL"===r.nodeName){t.preventDefault(),e.modifyBlocks(xn,n);break}o=r}},"shift-tab":function(e,t,n){var o,r=e._root;e._removeZWS(),n.collapsed&&Ft(n,r)&&(o=n.startContainer,(p(o,r,"UL")||p(o,r,"OL"))&&(t.preventDefault(),e.modifyBlocks(Ln,n)))},space:function(e,t,n){var o,r;e._recordUndoState(n),On(n.startContainer,e._root,e),e._getRangeAndRemoveBookmark(n),o=n.endContainer,r=o.parentNode,n.collapsed&&"A"===r.nodeName&&!o.nextSibling&&n.endOffset===v(o)?n.setStartAfter(r):n.collapsed||(At(n,e._root),e._ensureBottomLine(),e.setSelection(n),e._updatePath(n,!0)),e.setSelection(n)},left:function(e){e._removeZWS()},right:function(e){e._removeZWS()}};nt&&rt&&(Zt["meta-left"]=function(e,t){t.preventDefault();var n=gn(e);n&&n.modify&&n.modify("move","backward","lineboundary")},Zt["meta-right"]=function(e,t){t.preventDefault();var n=gn(e);n&&n.modify&&n.modify("move","forward","lineboundary")}),nt||(Zt.pageup=function(e){e.moveCursorToStart()},Zt.pagedown=function(e){e.moveCursorToEnd()}),Zt[ct+"b"]=Kt("B"),Zt[ct+"i"]=Kt("I"),Zt[ct+"u"]=Kt("U"),Zt[ct+"shift-7"]=Kt("S"),Zt[ct+"shift-5"]=Kt("SUB",{tag:"SUP"}),Zt[ct+"shift-6"]=Kt("SUP",{tag:"SUB"}),Zt[ct+"shift-8"]=qt("makeUnorderedList"),Zt[ct+"shift-9"]=qt("makeOrderedList"),Zt[ct+"["]=qt("decreaseQuoteLevel"),Zt[ct+"]"]=qt("increaseQuoteLevel"),Zt[ct+"y"]=qt("redo"),Zt[ct+"z"]=qt("undo"),Zt[ct+"shift-z"]=qt("redo");var jt={1:10,2:13,3:16,4:18,5:24,6:32,7:48},Qt={backgroundColor:{regexp:mt,replace:function(e,t){return S(e,"SPAN",{"class":Q,style:"background-color:"+t})}},color:{regexp:mt,replace:function(e,t){return S(e,"SPAN",{"class":V,style:"color:"+t})}},fontWeight:{regexp:/^bold|^700/i,replace:function(e){return S(e,"B")}},fontStyle:{regexp:/^italic/i,replace:function(e){return S(e,"I")}},fontFamily:{regexp:mt,replace:function(e,t){return S(e,"SPAN",{"class":$,style:"font-family:"+t})}},fontSize:{regexp:mt,replace:function(e,t){return S(e,"SPAN",{"class":Y,style:"font-size:"+t})}},textDecoration:{regexp:/^underline/i,replace:function(e){return S(e,"U")}}},Vt=function(e){return function(t,n){var o=S(t.ownerDocument,e);return n.replaceChild(o,t),o.appendChild(_(t)),o}},$t=function(e,t){var n,o,r,i,a,s,d=e.style,l=e.ownerDocument;for(n in Qt)o=Qt[n],r=d[n],r&&o.regexp.test(r)&&(s=o.replace(l,r),a||(a=s),i&&i.appendChild(s),i=s,e.style[n]="");return a&&(i.appendChild(_(e)),"SPAN"===e.nodeName?t.replaceChild(a,e):e.appendChild(a)),i||e},Yt={P:$t,SPAN:$t,STRONG:Vt("B"),EM:Vt("I"),INS:Vt("U"),STRIKE:Vt("S"),FONT:function(e,t){var n,o,r,i,a,s=e.face,d=e.size,l=e.color,c=e.ownerDocument;return s&&(n=S(c,"SPAN",{"class":"font",style:"font-family:"+s}),a=n,i=n),d&&(o=S(c,"SPAN",{"class":"size",style:"font-size:"+jt[d]+"px"}),a||(a=o),i&&i.appendChild(o),i=o),l&&/^#?([\dA-F]{3}){1,2}$/i.test(l)&&("#"!==l.charAt(0)&&(l="#"+l),r=S(c,"SPAN",{"class":"colour",style:"color:"+l}),a||(a=r),i&&i.appendChild(r),i=r),a||(a=i=S(c,"SPAN")),t.replaceChild(a,e),i.appendChild(_(e)),i},TT:function(e,t){var n=S(e.ownerDocument,"SPAN",{"class":"font",style:'font-family:menlo,consolas,"courier new",monospace'});return t.replaceChild(n,e),n.appendChild(_(e)),n}},Xt=/^(?:A(?:DDRESS|RTICLE|SIDE|UDIO)|BLOCKQUOTE|CAPTION|D(?:[DLT]|IV)|F(?:IGURE|IGCAPTION|OOTER)|H[1-6]|HEADER|L(?:ABEL|EGEND|I)|O(?:L|UTPUT)|P(?:RE)?|SECTION|T(?:ABLE|BODY|D|FOOT|H|HEAD|R)|COL(?:GROUP)?|UL)$/,Jt=/^(?:HEAD|META|STYLE)/,en=new n(null,q|z,function(){return!0}),tn=function Un(e,t){var n,o,r,i,s,d,l,c,h,u,f,p,g=e.childNodes;for(n=e;a(n);)n=n.parentNode;for(en.root=n,o=0,r=g.length;r>o;o+=1)if(i=g[o],s=i.nodeName,d=i.nodeType,l=Yt[s],d===F){if(c=i.childNodes.length,l)i=l(i,e);else{if(Jt.test(s)){e.removeChild(i),o-=1,r-=1;continue}if(!Xt.test(s)&&!a(i)){o-=1,r+=c-1,e.replaceChild(_(i),i);continue}}c&&Un(i,t||"PRE"===s)}else{if(d===M){if(f=i.data,h=!mt.test(f.charAt(0)),u=!mt.test(f.charAt(f.length-1)),t||!h&&!u)continue;if(h){for(en.currentNode=i;(p=en.previousPONode())&&(s=p.nodeName,!("IMG"===s||"#text"===s&&mt.test(p.data)));)if(!a(p)){p=null;break}f=f.replace(/^[ \t\r\n]+/g,p?" ":"")}if(u){for(en.currentNode=i;(p=en.nextNode())&&!("IMG"===s||"#text"===s&&mt.test(p.data));)if(!a(p)){p=null;break}f=f.replace(/[ \t\r\n]+$/g,p?" ":"")}if(f){i.data=f;continue}}e.removeChild(i),o-=1,r-=1}return e},nn=function Pn(e){for(var t,n=e.childNodes,o=n.length;o--;)t=n[o],t.nodeType!==F||r(t)?t.nodeType!==M||t.data||e.removeChild(t):(Pn(t),a(t)&&!t.firstChild&&e.removeChild(t))},on=function(e){return e.nodeType===F?"BR"===e.nodeName:mt.test(e.data)},rn=function(e){for(var t,o=e.parentNode;a(o);)o=o.parentNode;return t=new n(o,z|q,on),t.currentNode=e,!!t.nextNode()},an=function(e,t){var n,o,r,i=e.querySelectorAll("BR"),s=[],d=i.length;for(n=0;d>n;n+=1)s[n]=rn(i[n]);for(;d--;)o=i[d],r=o.parentNode,r&&(s[d]?a(r)||T(r,t):C(o))},sn=function(e,t){var n=t.ownerDocument.body;t.setAttribute("style","position:fixed;overflow:hidden;bottom:100%;right:100%;"),n.appendChild(t),e.setData("text/html",t.innerHTML),e.setData("text/plain",t.innerText||t.textContent),n.removeChild(t)},dn=function(e){var t=e.clipboardData,n=this.getSelection(),o=this.createElement("div"),r=this._root,i=this;this.saveUndoState(n),st||tt||!t?setTimeout(function(){try{i._ensureBottomLine()}catch(e){i.didError(e)}},0):(Ut(n,r),o.appendChild(At(n,r)),sn(t,o),e.preventDefault()),this.setSelection(n)},ln=function(e){var t,n,o,r,i,a,s=e.clipboardData,d=this.getSelection(),l=this.createElement("div"),c=this._root;if(!st&&!tt&&s){for(d=d.cloneRange(),t=Pt(d,c),n=It(d,c),o=t===n?t:c,Dt(d),Ut(d,o),r=d.cloneContents(),i=d.commonAncestorContainer,i.nodeType===M&&(i=i.parentNode);i&&i!==o;)a=i.cloneNode(!1),a.appendChild(r),r=a,i=i.parentNode;l.appendChild(r),sn(s,l),e.preventDefault()}},cn=function(e){var t,n,o,r,i,a=e.clipboardData,s=a&&a.items,d=this.isShiftDown,l=!1,c=!1,h=null,u=this;if(!st&&s){for(e.preventDefault(),t=s.length;t--;){if(n=s[t],o=n.type,!d&&"text/html"===o)return void n.getAsString(function(e){u.insertHTML(e,!0)});"text/plain"===o&&(h=n),!d&&/^image\/.*/.test(o)&&(c=!0)}return void(c?(this.fireEvent("dragover",{dataTransfer:a,preventDefault:function(){l=!0}}),l&&this.fireEvent("drop",{dataTransfer:a})):h&&n.getAsString(function(e){u.insertPlainText(e,!0)}))}if(r=a&&a.types,!st&&r&&(vt.call(r,"text/html")>-1||!rt&&vt.call(r,"text/plain")>-1&&vt.call(r,"text/rtf")<0))return e.preventDefault(),void(!d&&(i=a.getData("text/html"))?this.insertHTML(i,!0):((i=a.getData("text/plain"))||(i=a.getData("text/uri-list")))&&this.insertPlainText(i,!0));this._awaitingPaste=!0;var f=this._doc.body,p=this.getSelection(),g=p.startContainer,m=p.startOffset,v=p.endContainer,N=p.endOffset,_=this.createElement("DIV",{contenteditable:"true",style:"position:fixed; overflow:hidden; top:0; right:100%; width:1px; height:1px;"});f.appendChild(_),p.selectNodeContents(_),this.setSelection(p),setTimeout(function(){try{u._awaitingPaste=!1;for(var e,t,n="",o=_;_=o;)o=_.nextSibling,C(_),e=_.firstChild,e&&e===_.lastChild&&"DIV"===e.nodeName&&(_=e),n+=_.innerHTML;t=u._createRange(g,m,v,N),u.setSelection(t),n&&u.insertHTML(n,!0)}catch(r){u.didError(r)}},0)},hn=function(e){for(var t=e.dataTransfer.types,n=t.length,o=!1,r=!1;n--;)switch(t[n]){case"text/plain":o=!0;break;case"text/html":r=!0;break;default:return}(r||o)&&this.saveUndoState()},un=[],fn=R.prototype;fn.setConfig=function(e){return e=O({blockTag:"DIV",blockAttributes:null,tagAttributes:{blockquote:null,ul:null,ol:null,li:null,a:null},leafNodeNames:_t,undo:{documentSizeThreshold:-1,undoLimit:-1}},e,!0),e.blockTag=e.blockTag.toUpperCase(),this._config=e,this},fn.createElement=function(e,t,n){return S(this._doc,e,t,n)},fn.createDefaultBlock=function(e){var t=this._config;return y(this.createElement(t.blockTag,t.blockAttributes,e),this._root)},fn.didError=function(e){console.log(e)},fn.getDocument=function(){return this._doc},fn.getRoot=function(){return this._root},fn.modifyDocument=function(e){this._ignoreAllChanges=!0,this._mutation&&this._mutation.disconnect(),e(),this._ignoreAllChanges=!1,this._mutation&&(this._mutation.observe(this._root,{childList:!0,attributes:!0,characterData:!0,subtree:!0}),this._ignoreChange=!1)};var pn={pathChange:1,select:1,input:1,undoStateChange:1};fn.fireEvent=function(e,t){var n,o,r,i=this._events[e];if(/^(?:focus|blur)/.test(e))if(n=g(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(i)for(t||(t={}),t.type!==e&&(t.type=e),i=i.slice(),o=i.length;o--;){r=i[o];try{r.handleEvent?r.handleEvent(t):r.call(this,t)}catch(a){a.details="Squire: fireEvent error. Event type: "+e,this.didError(a)}}return this},fn.destroy=function(){var e,t=un.length,n=this._events;for(e in n)this.removeEventListener(e);for(this._mutation&&this._mutation.disconnect();t--;)un[t]===this&&un.splice(t,1);this._undoIndex=-1,this._undoStack=[],this._undoStackLength=0},fn.handleEvent=function(e){this.fireEvent(e.type,e)},fn.addEventListener=function(e,t){var n=this._events[e],o=this._root;return t?(n||(n=this._events[e]=[],pn[e]||("selectionchange"===e&&(o=this._doc),o.addEventListener(e,this,!0))),n.push(t),this):(this.didError({name:"Squire: addEventListener with null or undefined fn",message:"Event type: "+e}),this)},fn.removeEventListener=function(e,t){var n,o=this._events[e],r=this._root;if(o){if(t)for(n=o.length;n--;)o[n]===t&&o.splice(n,1);else o.length=0;o.length||(delete this._events[e],pn[e]||("selectionchange"===e&&(r=this._doc),r.removeEventListener(e,this,!0)))}return this},fn._createRange=function(e,t,n,o){if(e instanceof this._win.Range)return e.cloneRange();var r=this._doc.createRange();return r.setStart(e,t),n?r.setEnd(n,o):r.setEnd(e,t),r},fn.getCursorPosition=function(e){if(!e&&!(e=this.getSelection())||!e.getBoundingClientRect)return null;var t,n,o=e.getBoundingClientRect();return o&&!o.top&&(this._ignoreChange=!0,t=this._doc.createElement("SPAN"),t.textContent=X,xt(e,t),o=t.getBoundingClientRect(),n=t.parentNode,n.removeChild(t),k(n,e)),o},fn._moveCursorTo=function(e){var t=this._root,n=this._createRange(t,e?0:t.childNodes.length);return Dt(n),this.setSelection(n),this},fn.moveCursorToStart=function(){return this._moveCursorTo(!0)},fn.moveCursorToEnd=function(){return this._moveCursorTo(!1)};var gn=function(e){return e._win.getSelection()||null};fn.setSelection=function(e){if(e)if(this._lastSelection=e,this._isFocused)if(ot&&!this._restoreSelection)D.call(this),this.blur(),this.focus();else{tt&&this._win.focus();var t=gn(this);t&&(t.removeAllRanges(),t.addRange(e))}else D.call(this);return this},fn.getSelection=function(){var e,t,n,o=gn(this),i=this._root;return o&&o.rangeCount&&(e=o.getRangeAt(0).cloneRange(),t=e.startContainer,n=e.endContainer,t&&r(t)&&e.setStartBefore(t),n&&r(n)&&e.setEndBefore(n)),e&&g(i,e.commonAncestorContainer)?this._lastSelection=e:e=this._lastSelection,e||(e=this._createRange(i.firstChild,0)),e},fn.getSelectedText=function(){var e,t=this.getSelection(),o=new n(t.commonAncestorContainer,q|z,function(e){return Rt(t,e,!0)}),r=t.startContainer,i=t.endContainer,s=o.currentNode=r,d="",l=!1;for(o.filter(s)||(s=o.nextNode());s;)s.nodeType===M?(e=s.data,e&&/\S/.test(e)&&(s===i&&(e=e.slice(0,t.endOffset)),s===r&&(e=e.slice(t.startOffset)),d+=e,l=!0)):("BR"===s.nodeName||l&&!a(s))&&(d+="\n",l=!1),s=o.nextNode();return d},fn.getPath=function(){return this._path};var mn=function(e,t){for(var o,r,i,s=new n(e,q,function(){return!0},!1);r=s.nextNode();)for(;(i=r.data.indexOf(X))>-1&&(!t||r.parentNode!==t);){if(1===r.length){do o=r.parentNode,o.removeChild(r),r=o,s.currentNode=o;while(a(r)&&!v(r));break}r.deleteData(i,1)}};fn._didAddZWS=function(){this._hasZWS=!0},fn._removeZWS=function(){this._hasZWS&&(mn(this._root),this._hasZWS=!1)},fn._updatePath=function(e,t){var n,o=e.startContainer,r=e.endContainer;(t||o!==this._lastAnchorNode||r!==this._lastFocusNode)&&(this._lastAnchorNode=o,this._lastFocusNode=r,n=o&&r?o===r?m(r,this._root):"(selection)":"",this._path!==n&&(this._path=n,this.fireEvent("pathChange",{path:n}))),e.collapsed||this.fireEvent("select")},fn._updatePathOnEvent=function(){var e=this;e._willUpdatePath||(e._willUpdatePath=!0,setTimeout(function(){e._willUpdatePath=!1,e._updatePath(e.getSelection())},0))},fn.focus=function(){return this._root.focus(),lt&&this.fireEvent("focus"),this},fn.blur=function(){return this._root.blur(),lt&&this.fireEvent("blur"),this};var vn="squire-selection-start",Cn="squire-selection-end";fn._saveRangeToBookmark=function(e){var t,n=this.createElement("INPUT",{id:vn,type:"hidden"}),o=this.createElement("INPUT",{id:Cn,type:"hidden"});xt(e,n),e.collapse(!1),xt(e,o),n.compareDocumentPosition(o)&w&&(n.id=Cn,o.id=vn,t=n,n=o,o=t),e.setStartAfter(n),e.setEndBefore(o)},fn._getRangeAndRemoveBookmark=function(e){var t=this._root,n=t.querySelector("#"+vn),o=t.querySelector("#"+Cn);if(n&&o){var r=n.parentNode,i=o.parentNode,a=vt.call(r.childNodes,n),s=vt.call(i.childNodes,o);r===i&&(s-=1),C(n),C(o),e||(e=this._doc.createRange()),e.setStart(r,a),e.setEnd(i,s),k(r,e),r!==i&&k(i,e),e.collapsed&&(r=e.startContainer,r.nodeType===M&&(i=r.childNodes[e.startOffset],i&&i.nodeType===M||(i=r.childNodes[e.startOffset-1]),i&&i.nodeType===M&&(e.setStart(i,0),e.collapse(!0))))}return e||null},fn._keyUpDetectChange=function(e){var t=e.keyCode;e.ctrlKey||e.metaKey||e.altKey||!(16>t||t>20)||!(33>t||t>45)||this._docWasChanged()},fn._docWasChanged=function(){if(gt&&(Et=new WeakMap),!this._ignoreAllChanges){if(pt&&this._ignoreChange)return void(this._ignoreChange=!1);this._isInUndoState&&(this._isInUndoState=!1,this.fireEvent("undoStateChange",{canUndo:!0,canRedo:!1})),this.fireEvent("input")}},fn._recordUndoState=function(e){if(!this._isInUndoState){var t,n=this._undoIndex+=1,o=this._undoStack,r=this._config.undo,i=r.documentSizeThreshold,a=r.undoLimit;n-1&&2*t.length>i&&a>-1&&n>a&&(o.splice(0,n-a),n=this._undoIndex=a,this._undoStackLength=a),o[n]=t,this._undoStackLength+=1,this._isInUndoState=!0}},fn.saveUndoState=function(e){return e===t&&(e=this.getSelection()),this._isInUndoState||(this._recordUndoState(e),this._getRangeAndRemoveBookmark(e)),this +},fn.undo=function(){if(0!==this._undoIndex||!this._isInUndoState){this._recordUndoState(this.getSelection()),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},fn.redo=function(){var e=this._undoIndex,t=this._undoStackLength;if(t>e+1&&this._isInUndoState){this._undoIndex+=1,this._setHTML(this._undoStack[this._undoIndex]);var n=this._getRangeAndRemoveBookmark();n&&this.setSelection(n),this.fireEvent("undoStateChange",{canUndo:!0,canRedo:t>e+2}),this.fireEvent("input")}return this},fn.hasFormat=function(e,t,o){if(e=e.toUpperCase(),t||(t={}),!o&&!(o=this.getSelection()))return!1;!o.collapsed&&o.startContainer.nodeType===M&&o.startOffset===o.startContainer.length&&o.startContainer.nextSibling&&o.setStartBefore(o.startContainer.nextSibling),!o.collapsed&&o.endContainer.nodeType===M&&0===o.endOffset&&o.endContainer.previousSibling&&o.setEndAfter(o.endContainer.previousSibling);var r,i,a=this._root,s=o.commonAncestorContainer;if(p(s,a,e,t))return!0;if(s.nodeType===M)return!1;r=new n(s,q,function(e){return Rt(o,e,!0)},!1);for(var d=!1;i=r.nextNode();){if(!p(i,a,e,t))return!1;d=!0}return d},fn.getFontInfo=function(e){var n,o,r,i={color:t,backgroundColor:t,family:t,size:t},a=0;if(!e&&!(e=this.getSelection()))return i;if(n=e.commonAncestorContainer,e.collapsed||n.nodeType===M)for(n.nodeType===M&&(n=n.parentNode);4>a&&n;)(o=n.style)&&(!i.color&&(r=o.color)&&(i.color=r,a+=1),!i.backgroundColor&&(r=o.backgroundColor)&&(i.backgroundColor=r,a+=1),!i.family&&(r=o.fontFamily)&&(i.family=r,a+=1),!i.size&&(r=o.fontSize)&&(i.size=r,a+=1)),n=n.parentNode;return i},fn._addFormat=function(e,t,o){var r,i,s,d,l,c,h,u,f,g=this._root;if(o.collapsed){for(r=y(this.createElement(e,t),g),xt(o,r),o.setStart(r.firstChild,r.firstChild.length),o.collapse(!0),f=r;a(f);)f=f.parentNode;mn(f,r)}else{if(i=new n(o.commonAncestorContainer,q|z,function(e){return(e.nodeType===M||"BR"===e.nodeName||"IMG"===e.nodeName)&&Rt(o,e,!0)},!1),s=o.startContainer,l=o.startOffset,d=o.endContainer,c=o.endOffset,i.currentNode=s,i.filter(s)||(s=i.nextNode(),l=0),!s)return o;do h=i.currentNode,u=!p(h,g,e,t),u&&(h===d&&h.length>c&&h.splitText(c),h===s&&l&&(h=h.splitText(l),d===s&&(d=h,c-=l),s=h,l=0),r=this.createElement(e,t),N(h,r),r.appendChild(h));while(i.nextNode());d.nodeType!==M&&(h.nodeType===M?(d=h,c=h.length):(d=h.parentNode,c=1)),o=this._createRange(s,l,d,c)}return o},fn._removeFormat=function(e,t,n,o){this._saveRangeToBookmark(n);var r,i=this._doc;n.collapsed&&(ut?(r=i.createTextNode(X),this._didAddZWS()):r=i.createTextNode(""),xt(n,r));for(var s=n.commonAncestorContainer;a(s);)s=s.parentNode;var d=n.startContainer,l=n.startOffset,c=n.endContainer,h=n.endOffset,u=[],p=function(e,t){if(!Rt(n,e,!1)){var o,r,i=e.nodeType===M;if(!Rt(n,e,!0))return void("INPUT"===e.nodeName||i&&!e.data||u.push([t,e]));if(i)e===c&&h!==e.length&&u.push([t,e.splitText(h)]),e===d&&l&&(e.splitText(l),u.push([t,e]));else for(o=e.firstChild;o;o=r)r=o.nextSibling,p(o,t)}},g=Array.prototype.filter.call(s.getElementsByTagName(e),function(o){return Rt(n,o,!0)&&f(o,e,t)});return o||g.forEach(function(e){p(e,e)}),u.forEach(function(e){var t=e[0].cloneNode(!1),n=e[1];N(n,t),t.appendChild(n)}),g.forEach(function(e){N(e,_(e))}),this._getRangeAndRemoveBookmark(n),r&&n.collapse(!1),k(s,n),n},fn.changeFormat=function(e,t,n,o){return n||(n=this.getSelection())?(this.saveUndoState(n),t&&(n=this._removeFormat(t.tag.toUpperCase(),t.attributes||{},n,o)),e&&(n=this._addFormat(e.tag.toUpperCase(),e.attributes||{},n)),this.setSelection(n),this._updatePath(n,!0),pt||this._docWasChanged(),this):this};var Nn={DT:"DD",DD:"DT",LI:"LI"},_n=function(e,t,n,o){var r=Nn[t.nodeName],i=null,a=b(n,o,t.parentNode,e._root),s=e._config;return r||(r=s.blockTag,i=s.blockAttributes),f(a,r,i)||(t=S(a.ownerDocument,r,i),a.dir&&(t.dir=a.dir),N(a,t),t.appendChild(_(a)),a=t),a};fn.forEachBlock=function(e,t,n){if(!n&&!(n=this.getSelection()))return this;t&&this.saveUndoState(n);var o=this._root,r=Pt(n,o),i=It(n,o);if(r&&i)do if(e(r)||r===i)break;while(r=h(r,o));return t&&(this.setSelection(n),this._updatePath(n,!0),pt||this._docWasChanged()),this},fn.modifyBlocks=function(e,t){if(!t&&!(t=this.getSelection()))return this;this._isInUndoState?this._saveRangeToBookmark(t):this._recordUndoState(t);var n,o=this._root;return Ht(t,o),Ut(t,o),n=Lt(t,o,o),xt(t,e.call(this,n)),t.endOffsett;t+=1)o=a[t],r=_(o),T(r,l),N(o,r);for(t=0,n=d.length;n>t;t+=1)i=d[t],s(i)?N(i,this.createDefaultBlock([_(i)])):(T(i,l),N(i,_(i)));return e},xn=function(e){var t,n,o,r,i,a,s=e.querySelectorAll("LI"),l=this._config.tagAttributes;for(t=0,n=s.length;n>t;t+=1)o=s[t],d(o.firstChild)||(r=o.parentNode.nodeName,i=o.previousSibling,i&&(i=i.lastChild)&&i.nodeName===r||(a=l[r.toLowerCase()],i=this.createElement(r,a),N(o,i)),i.appendChild(o));return e},Ln=function(e){var t=this._root,n=e.querySelectorAll("LI");return Array.prototype.filter.call(n,function(e){return!d(e.firstChild)}).forEach(function(n){var o,r=n.parentNode,i=r.parentNode,a=n.firstChild,s=a;if(n.previousSibling&&(r=b(r,n,i,t)),/^[OU]L$/.test(i.nodeName))i.insertBefore(n,r),r.firstChild||i.removeChild(r);else for(;s&&(o=s.nextSibling,!d(s));)i.insertBefore(s,r),s=o;for("LI"===i.nodeName&&a.previousSibling&&b(i,a,i.parentNode,t);n!==e&&!n.childNodes.length;)r=n.parentNode,r.removeChild(n),n=r},this),T(e,t),e};fn._ensureBottomLine=function(){var e=this._root,t=e.lastElementChild;t&&t.nodeName===this._config.blockTag&&s(t)||e.appendChild(this.createDefaultBlock())},fn.setKeyHandler=function(e,t){return this._keyHandlers[e]=t,this},fn._getHTML=function(){return this._root.innerHTML},fn._setHTML=function(e){var t=this._root,n=t;n.innerHTML=e;do y(n,t);while(n=h(n,t));this._ignoreChange=!0},fn.getHTML=function(e){var t,n,o,r,i,a,s=[];if(e&&(a=this.getSelection())&&this._saveRangeToBookmark(a),ht)for(t=this._root,n=t;n=h(n,t);)n.textContent||n.querySelector("BR")||(o=this.createElement("BR"),n.appendChild(o),s.push(o));if(r=this._getHTML().replace(/\u200B/g,""),ht)for(i=s.length;i--;)C(s[i]);return a&&this._getRangeAndRemoveBookmark(a),r},fn.setHTML=function(e){var t,n=this._doc.createDocumentFragment(),o=this.createElement("DIV"),r=this._root;o.innerHTML=e,n.appendChild(_(o)),tn(n),an(n,r),T(n,r);for(var i=n;i=h(i,r);)y(i,r);for(this._ignoreChange=!0;t=r.lastChild;)r.removeChild(t);r.appendChild(n),y(r,r),this._undoIndex=-1,this._undoStack.length=0,this._undoStackLength=0,this._isInUndoState=!1;var a=this._getRangeAndRemoveBookmark()||this._createRange(r.firstChild,0);return this.saveUndoState(a),this._lastSelection=a,D.call(this),this._updatePath(a,!0),this},fn.insertElement=function(e,t){if(t||(t=this.getSelection()),t.collapse(!0),a(e))xt(t,e),t.setStartAfter(e);else{for(var n,o,r=this._root,i=Pt(t,r)||r;i!==r&&!i.nextSibling;)i=i.parentNode;i!==r&&(n=i.parentNode,o=b(n,i.nextSibling,r,r)),o?r.insertBefore(e,o):(r.appendChild(e),o=this.createDefaultBlock(),r.appendChild(o)),t.setStart(o,0),t.setEnd(o,0),Dt(t)}return this.focus(),this.setSelection(t),this._updatePath(t),pt||this._docWasChanged(),this},fn.insertImage=function(e,t){var n=this.createElement("IMG",O({src:e},t,!0));return this.insertElement(n),n};var An=/\b((?:(?:ht|f)tps?:\/\/|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,}\/)(?:[^\s()<>]+|\([^\s()<>]+\))+(?:\((?:[^\s()<>]+|(?:\([^\s()<>]+\)))*\)|[^\s`!()\[\]{};:'".,<>?«»“”‘’]))|([\w\-.%+]+@(?:[\w\-]+\.)+[A-Z]{2,}\b)/i,On=function(e,t,o){for(var r,i,a,s,d,l,c,h=e.ownerDocument,u=new n(e,q,function(e){return!p(e,t,"A")},!1),f=o._config.tagAttributes.a;r=u.nextNode();)for(i=r.data,a=r.parentNode;s=An.exec(i);)d=s.index,l=d+s[0].length,d&&(c=h.createTextNode(i.slice(0,d)),a.insertBefore(c,r)),c=o.createElement("A",O({href:s[1]?/^(?:ht|f)tps?:/.test(s[1])?s[1]:"http://"+s[1]:"mailto:"+s[2]},f,!1)),c.textContent=i.slice(d,l),a.insertBefore(c,r),r.data=i=i.slice(l)};fn.insertHTML=function(e,t){var n,o,r,i,a,s,d,l=this.getSelection(),c=this._doc;"undefined"!=typeof DOMPurify&&DOMPurify.isSupported?(i=DOMPurify.sanitize(e,{WHOLE_DOCUMENT:!1,RETURN_DOM:!0,RETURN_DOM_FRAGMENT:!0}),i=c.importNode(i,!0)):(t&&(n=e.indexOf(""),o=e.lastIndexOf(""),n>-1&&o>-1&&(e=e.slice(n+20,o))),r=this.createElement("DIV"),r.innerHTML=e,i=c.createDocumentFragment(),i.appendChild(_(r))),this.saveUndoState(l);try{for(a=this._root,s=i,d={fragment:i,preventDefault:function(){this.defaultPrevented=!0},defaultPrevented:!1},On(i,i,this),tn(i),an(i,null),nn(i),i.normalize();s=h(s,i);)y(s,null);t&&this.fireEvent("willPaste",d),d.defaultPrevented||(Ot(l,d.fragment,a),pt||this._docWasChanged(),l.collapse(!1),this._ensureBottomLine()),this.setSelection(l),this._updatePath(l,!0),t&&this.focus()}catch(u){this.didError(u)}return this};var Rn=function(e){return e.split("&").join("&").split("<").join("<").split(">").join(">").split('"').join(""")};fn.insertPlainText=function(e,t){var n,o,r,i,a=e.split("\n"),s=this._config,d=s.blockTag,l=s.blockAttributes,c="",h="<"+d;for(n in l)h+=" "+n+'="'+Rn(l[n])+'"';for(h+=">",o=0,r=a.length;r>o;o+=1)i=a[o],i=Rn(i).replace(/ (?= )/g," "),o&&r>o+1&&(i=h+(i||"
")+c),a[o]=i;return this.insertHTML(a.join(""),t)};var Dn=function(e,t,n){return function(){return this[e](t,n),this.focus()}};fn.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},fn.bold=Dn("changeFormat",{tag:"B"}),fn.italic=Dn("changeFormat",{tag:"I"}),fn.underline=Dn("changeFormat",{tag:"U"}),fn.strikethrough=Dn("changeFormat",{tag:"S"}),fn.subscript=Dn("changeFormat",{tag:"SUB"},{tag:"SUP"}),fn.superscript=Dn("changeFormat",{tag:"SUP"},{tag:"SUB"}),fn.removeBold=Dn("changeFormat",null,{tag:"B"}),fn.removeItalic=Dn("changeFormat",null,{tag:"I"}),fn.removeUnderline=Dn("changeFormat",null,{tag:"U"}),fn.removeStrikethrough=Dn("changeFormat",null,{tag:"S"}),fn.removeSubscript=Dn("changeFormat",null,{tag:"SUB"}),fn.removeSuperscript=Dn("changeFormat",null,{tag:"SUP"}),fn.makeLink=function(e,t){var n=this.getSelection();if(n.collapsed){var o=e.indexOf(":")+1;if(o)for(;"/"===e[o];)o+=1;xt(n,this._doc.createTextNode(e.slice(o)))}return t=O(O({href:e},t,!0),this._config.tagAttributes.a,!1),this.changeFormat({tag:"A",attributes:t},{tag:"A"},n),this.focus()},fn.removeLink=function(){return this.changeFormat(null,{tag:"A"},this.getSelection(),!0),this.focus()},fn.setFontFace=function(e){return this.changeFormat(e?{tag:"SPAN",attributes:{"class":"font",style:"font-family: "+e+", sans-serif;"}}:null,{tag:"SPAN",attributes:{"class":"font"}}),this.focus()},fn.setFontSize=function(e){return this.changeFormat(e?{tag:"SPAN",attributes:{"class":"size",style:"font-size: "+("number"==typeof e?e+"px":e)}}:null,{tag:"SPAN",attributes:{"class":"size"}}),this.focus()},fn.setTextColour=function(e){return this.changeFormat(e?{tag:"SPAN",attributes:{"class":"colour",style:"color:"+e}}:null,{tag:"SPAN",attributes:{"class":"colour"}}),this.focus()},fn.setHighlightColour=function(e){return this.changeFormat(e?{tag:"SPAN",attributes:{"class":"highlight",style:"background-color:"+e}}:e,{tag:"SPAN",attributes:{"class":"highlight"}}),this.focus()},fn.setTextAlignment=function(e){return this.forEachBlock(function(t){t.className=(t.className.split(/\s+/).filter(function(e){return!/align/.test(e)}).join(" ")+" align-"+e).trim(),t.style.textAlign=e},!0),this.focus()},fn.setTextDirection=function(e){return this.forEachBlock(function(t){t.dir=e},!0),this.focus()},fn.removeAllFormatting=function(e){if(!e&&!(e=this.getSelection())||e.collapsed)return this;for(var t=this._root,n=e.commonAncestorContainer;n&&!s(n);)n=n.parentNode;if(n||(Ht(e,t),n=t),n.nodeType===M)return this;this.saveUndoState(e),Ut(e,n);for(var o,r,i=n.ownerDocument,a=e.startContainer,d=e.startOffset,l=e.endContainer,c=e.endOffset,h=i.createDocumentFragment(),u=i.createDocumentFragment(),f=b(l,c,n,t),p=b(a,d,n,t);p!==f;)o=p.nextSibling,h.appendChild(p),p=o;return I(this,h,u),u.normalize(),p=u.firstChild,o=u.lastChild,r=n.childNodes,p?(n.insertBefore(u,f),d=vt.call(r,p),c=vt.call(r,o)+1):(d=vt.call(r,f),c=d),e.setStart(n,d),e.setEnd(n,c),k(n,e),Dt(e),this.setSelection(e),this._updatePath(e,!0),this.focus()},fn.increaseQuoteLevel=Dn("modifyBlocks",Sn),fn.decreaseQuoteLevel=Dn("modifyBlocks",yn),fn.makeUnorderedList=Dn("modifyBlocks",En),fn.makeOrderedList=Dn("modifyBlocks",kn),fn.removeList=Dn("modifyBlocks",Bn),fn.increaseListLevel=Dn("modifyBlocks",xn),fn.decreaseListLevel=Dn("modifyBlocks",Ln),R.getNodeBefore=kt,R.getNodeAfter=Bt,R.insertNodeInRange=xt,R.extractContentsOfRange=Lt,R.deleteContentsOfRange=At,R.insertTreeFragmentIntoRange=Ot,R.isNodeContainedInRange=Rt,R.moveRangeBoundariesDownTree=Dt,R.moveRangeBoundariesUpTree=Ut,R.getStartBlockOfRange=Pt,R.getEndBlockOfRange=It,R.contentWalker=wt,R.rangeDoesStartAtBlockBoundary=Ft,R.rangeDoesEndAtBlockBoundary=Mt,R.expandRangeToBlockBoundaries=Ht,R.onPaste=cn,R.addLinks=On,R.splitBlock=_n,R.startSelectionId=vn,R.endSelectionId=Cn,"object"==typeof exports?module.exports=R:"function"==typeof define&&define.amd?define(function(){return R}):(J.Squire=R,top!==J&&"true"===e.documentElement.getAttribute("data-squireinit")&&(J.editor=new R(e),J.onEditorLoad&&(J.onEditorLoad(J.editor),J.onEditorLoad=null)))}(document); \ No newline at end of file diff --git a/source/Constants.js b/source/Constants.js index aeec0e2..dbb62dc 100644 --- a/source/Constants.js +++ b/source/Constants.js @@ -43,6 +43,7 @@ var cantFocusEmptyTextNodes = isIElt11 || isWebKit; var losesSelectionOnBlur = isIElt11; var canObserveMutations = typeof MutationObserver !== 'undefined'; +var canWeakMap = typeof WeakMap !== 'undefined'; // Use [^ \t\r\n] instead of \S so that nbsp does not count as white-space var notWS = /[^ \t\r\n]/; diff --git a/source/Editor.js b/source/Editor.js index fa3d837..d16ab84 100644 --- a/source/Editor.js +++ b/source/Editor.js @@ -746,6 +746,9 @@ proto._keyUpDetectChange = function ( event ) { }; proto._docWasChanged = function () { + if ( canWeakMap ) { + nodeCategoryCache = new WeakMap(); + } if ( this._ignoreAllChanges ) { return; } diff --git a/source/Node.js b/source/Node.js index 4ad05ba..c68b079 100644 --- a/source/Node.js +++ b/source/Node.js @@ -22,25 +22,48 @@ function every ( nodeList, fn ) { // --- +var UNKNOWN = 0; +var INLINE = 1; +var BLOCK = 2; +var CONTAINER = 3; + +var nodeCategoryCache = canWeakMap ? new WeakMap() : null; + function isLeaf ( node ) { - return node.nodeType === ELEMENT_NODE && - !!leafNodeNames[ node.nodeName ]; + return node.nodeType === ELEMENT_NODE && !!leafNodeNames[ node.nodeName ]; } -function isInline ( node ) { - return inlineNodeNames.test( node.nodeName ) && +function getNodeCategory ( node ) { + if ( canWeakMap && nodeCategoryCache.has( node ) ) { + return nodeCategoryCache.get( node ); + } + var type = node.nodeType; + var nodeCategory; + if ( type === TEXT_NODE ) { + nodeCategory = INLINE; + } else if ( type !== ELEMENT_NODE && type !== DOCUMENT_FRAGMENT_NODE ) { + nodeCategory = UNKNOWN; + } else if ( !every( node.childNodes, isInline ) ) { // Malformed HTML can have block tags inside inline tags. Need to treat // these as containers rather than inline. See #239. - ( node.nodeType === TEXT_NODE || every( node.childNodes, isInline ) ); + nodeCategory = CONTAINER; + } else if ( inlineNodeNames.test( node.nodeName ) ) { + nodeCategory = INLINE; + } else { + nodeCategory = BLOCK; + } + if ( canWeakMap ) { + nodeCategoryCache.set( node, nodeCategory ); + } + return nodeCategory; +} +function isInline ( node ) { + return getNodeCategory( node ) === INLINE; } function isBlock ( node ) { - var type = node.nodeType; - return ( type === ELEMENT_NODE || type === DOCUMENT_FRAGMENT_NODE ) && - !isInline( node ) && every( node.childNodes, isInline ); + return getNodeCategory( node ) === BLOCK; } function isContainer ( node ) { - var type = node.nodeType; - return ( type === ELEMENT_NODE || type === DOCUMENT_FRAGMENT_NODE ) && - !isInline( node ) && !isBlock( node ); + return getNodeCategory( node ) === CONTAINER; } function getBlockWalker ( node, root ) {