From c766333f0fc4ecd5d6014a87762bb08438505a3c Mon Sep 17 00:00:00 2001 From: Andy Kauffman Date: Thu, 28 Apr 2016 12:01:20 -0400 Subject: [PATCH] Add a modifyDocument method There are certain times when it is necessary to modify the document programmatically, such as to set attributes, add tooltips, etc. Such edits should not be observed as inputs. This method allows edits to be ignored by the editor. --- README.md | 5 +++++ build/squire-raw.js | 24 ++++++++++++++++++++++++ build/squire.js | 5 +++-- source/Editor.js | 24 ++++++++++++++++++++++++ 4 files changed, 56 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5d9c003..2e7db8f 100644 --- a/README.md +++ b/README.md @@ -439,3 +439,8 @@ Change the **inline** formatting of the current selection. This is a high-level 3. A Range object with the range to apply the formatting changes to (or `null`/omit to apply to current selection). 4. A boolean (defaults to `false` if omitted). If `true`, any formatting nodes that cover at least part of the selected range will be removed entirely (so will potentially be removed from text outside the selected range as well). If `false`, the formatting nodes will continue to apply to any text outside the selection. This is useful, for example, when removing links. If any of the text in the selection is part of a link, the whole link is removed, rather than the link continuing to apply to bits of text outside the selection. +### modifyDocument + +Takes in a function that can modify the document without the modifications being treated as input. + +This is useful when the document needs to be changed programmatically, but those changes should not raise input events or modify the undo state. diff --git a/build/squire-raw.js b/build/squire-raw.js index febfdb9..290f7a3 100644 --- a/build/squire-raw.js +++ b/build/squire-raw.js @@ -2276,6 +2276,7 @@ function Squire ( root, config ) { this._undoStackLength = 0; this._isInUndoState = false; this._ignoreChange = false; + this._ignoreAllChanges = false; if ( canObserveMutations ) { mutation = new MutationObserver( this._docWasChanged.bind( this ) ); @@ -2406,6 +2407,25 @@ proto.getRoot = function () { return this._root; }; +proto.modifyDocument = function(modificationCallback) { + this._ignoreAllChanges = true; + if(this._mutation) { + this._mutation.disconnect(); + } + + modificationCallback(); + + this._ignoreAllChanges = false; + if(this._mutation) { + this._mutation.observe( this._root, { + childList: true, + attributes: true, + characterData: true, + subtree: true + }); + } +}; + // --- Events --- // Subscribing to these events won't automatically add a listener to the @@ -2861,6 +2881,10 @@ proto._keyUpDetectChange = function ( event ) { }; proto._docWasChanged = function () { + if(this._ignoreAllChanges) { + return; + } + if ( canObserveMutations && this._ignoreChange ) { this._ignoreChange = false; return; diff --git a/build/squire.js b/build/squire.js index b69508f..c516bd5 100644 --- a/build/squire.js +++ b/build/squire.js @@ -1,2 +1,3 @@ -!function(e,t){"use strict";function n(e,t,n){this.root=this.currentNode=e,this.nodeType=t,this.filter=n}function r(e,t){for(var n=e.length;n--;)if(!t(e[n]))return!1;return!0}function o(e){return e.nodeType===P&&!!ct[e.nodeName]}function i(e){return lt.test(e.nodeName)}function a(e){var t=e.nodeType;return(t===P||t===F)&&!i(e)&&r(e.childNodes,i)}function s(e){var t=e.nodeType;return!(t!==P&&t!==F||i(e)||a(e))}function d(e,t){var r=new n(t,M,a);return r.currentNode=e,r}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 f(e,t){return!o(e)&&e.nodeType===t.nodeType&&e.nodeName===t.nodeName&&e.className===t.className&&(!e.style&&!t.style||e.style.cssText===t.style.cssText)}function h(e,t,n){if(e.nodeName!==t)return!1;for(var r in n)if(e.getAttribute(r)!==n[r])return!1;return!0}function u(e,t,n,r){for(;e&&e!==t;){if(h(e,n,r))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,r,o,i,a="";return e&&e!==t&&(a=g(e.parentNode,t),e.nodeType===P&&(a+=(a?">":"")+e.nodeName,(n=e.id)&&(a+="#"+n),(r=e.className.trim())&&(o=r.split(/\s\s*/),o.sort(),a+=".",a+=o.join(".")),(i=e.dir)&&(a+="[dir="+i+"]"))),a}function v(e){var t=e.nodeType;return t===P?e.childNodes.length:e.length||0}function m(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,r=n?n.length:0;r--;)t.appendChild(e.firstChild);return t}function S(e,n,r,o){var i,a,s,d,l=e.createElement(n);if(r instanceof Array&&(o=r,r=null),r)for(i in r)a=r[i],a!==t&&l.setAttribute(i,r[i]);if(o)for(s=0,d=o.length;d>s;s+=1)l.appendChild(o[s]);return l}function _(e,t){var n,r,a=e.ownerDocument,s=e;if(e===t&&((r=e.firstChild)&&"BR"!==r.nodeName||(n=k(a).createDefaultBlock(),r?e.replaceChild(n,r):e.appendChild(n),e=n,n=null)),e.nodeType===I)return s;if(i(e)){for(r=e.firstChild;rt&&r&&r.nodeType===I&&!r.data;)e.removeChild(r),r=e.firstChild;r||(rt?(n=a.createTextNode(Z),k(a)._didAddZWS()):n=a.createTextNode(""))}else if(nt){for(;e.nodeType!==I&&!o(e);){if(r=e.firstChild,!r){n=a.createTextNode("");break}e=r}e.nodeType===I?/^ +$/.test(e.data)&&(e.data=""):o(e)&&e.parentNode.insertBefore(a.createTextNode(""),e)}else if(!e.querySelector("BR"))for(n=S(a,"BR");(r=e.lastElementChild)&&!i(r);)e=r;if(n)try{e.appendChild(n)}catch(d){k(a).didError({name:"Squire: fixCursor – "+d,message:"Parent: "+e.nodeName+"/"+e.innerHTML+" appendChild: "+n.nodeName})}return s}function y(e,t){var n,r,o,a,d=e.childNodes,l=e.ownerDocument,c=null,f=k(l)._config;for(n=0,r=d.length;r>n;n+=1)o=d[n],a="BR"===o.nodeName,!a&&i(o)?(c||(c=S(l,f.blockTag,f.blockAttributes)),c.appendChild(o),n-=1,r-=1):(a||c)&&(c||(c=S(l,f.blockTag,f.blockAttributes)),_(c,t),a?e.replaceChild(c,o):(e.insertBefore(c,o),n+=1,r+=1),c=null),s(o)&&y(o,t);return c&&e.appendChild(_(c,t)),e}function T(e,t,n,r){var o,i,a,s=e.nodeType;if(s===I&&e!==n)return T(e.parentNode,e.splitText(t),n,r);if(s===P){if("number"==typeof t&&(t=ts?t.startOffset-=1:t.startOffset===s&&(t.startContainer=r,t.startOffset=v(r))),t.endContainer===e&&(t.endOffset>s?t.endOffset-=1:t.endOffset===s&&(t.endContainer=r,t.endOffset=v(r))),m(n),n.nodeType===I?r.appendData(n.data):d.push(N(n));else if(n.nodeType===P){for(o=d.length;o--;)n.appendChild(d.pop());E(n,t)}}function b(e,t,n){for(var r,o,i,a=t;1===a.parentNode.childNodes.length;)a=a.parentNode;m(a),o=e.childNodes.length,r=e.lastChild,r&&"BR"===r.nodeName&&(e.removeChild(r),o-=1),i={startContainer:e,startOffset:o,endContainer:e,endOffset:o},e.appendChild(N(t)),E(e,i),n.setStart(i.startContainer,i.startOffset),n.collapse(!0),X&&(r=e.lastChild)&&"BR"===r.nodeName&&e.removeChild(r)}function x(e,t){var n,r,o=e.previousSibling,i=e.firstChild,a=e.ownerDocument,d="LI"===e.nodeName;if(!d||i&&/^[OU]L$/.test(i.nodeName))if(o&&f(o,e)){if(!s(o)){if(!d)return;r=S(a,"DIV"),r.appendChild(N(o)),o.appendChild(r)}m(e),n=!s(e),o.appendChild(N(e)),n&&y(o,t),i&&x(i,t)}else d&&(o=S(a,"DIV"),e.insertBefore(o,i),_(o,t))}function k(e){for(var t,n=Vt.length;n--;)if(t=Vt[n],t._doc===e)return t;return null}function O(e,t){var n,r;e||(e={});for(n in t)r=t[n],e[n]=r&&r.constructor===Object?O(e[n],r):r;return e}function B(e,t){e.nodeType===w&&(e=e.body);var n,r=e.ownerDocument,o=r.defaultView;this._win=o,this._doc=r,this._root=e,this._events={},this._lastSelection=null,ot&&this.addEventListener("beforedeactivate",this.getSelection),this._hasZWS=!1,this._lastAnchorNode=null,this._lastFocusNode=null,this._path="",this.addEventListener("keyup",this._updatePathOnEvent),this.addEventListener("mouseup",this._updatePathOnEvent),this._undoIndex=-1,this._undoStack=[],this._undoStackLength=0,this._isInUndoState=!1,this._ignoreChange=!1,it?(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",L),this.addEventListener("input",A),this.addEventListener("mousedown",A),this.addEventListener("touchstart",A),this.addEventListener("focus",D),this._awaitingPaste=!1,this.addEventListener(Y?"beforecut":"cut",Kt),this.addEventListener("copy",Zt),this.addEventListener(Y?"beforepaste":"paste",Gt),this.addEventListener(X?"keypress":"keydown",kt),this._keyHandlers=Object.create(At),this.setConfig(t),Y&&(o.Text.prototype.splitText=function(e){var t=this.ownerDocument.createTextNode(this.data.slice(e)),n=this.nextSibling,r=this.parentNode,o=this.length-e;return n?r.insertBefore(t,n):r.appendChild(t),o&&this.deleteData(e,o),t}),e.setAttribute("contenteditable","true");try{r.execCommand("enableObjectResizing",!1,"false"),r.execCommand("enableInlineTableEditing",!1,"false")}catch(i){}Vt.push(this),this.setHTML("")}function L(){this._restoreSelection=!0}function A(){this._restoreSelection=!1}function D(){this._restoreSelection&&this.setSelection(this._lastSelection)}function R(e,t,n){var r,o;for(r=t.firstChild;r;r=o){if(o=r.nextSibling,i(r)){if(r.nodeType===I||"BR"===r.nodeName||"IMG"===r.nodeName){n.appendChild(r);continue}}else if(a(r)){n.appendChild(e.createDefaultBlock([R(e,r,e._doc.createDocumentFragment())]));continue}R(e,r,n)}return n}var U=2,P=1,I=3,w=9,F=11,M=1,H=4,W=0,z=1,q=2,K=3,Z="​",G=e.defaultView,V=navigator.userAgent,j=/iP(?:ad|hone|od)/.test(V),Q=/Mac OS X/.test(V),$=/Gecko\//.test(V),Y=/Trident\/[456]\./.test(V),X=!!G.opera,J=/Edge\//.test(V),et=!J&&/WebKit\//.test(V),tt=Q?"meta-":"ctrl-",nt=Y||X,rt=Y||et,ot=Y,it="undefined"!=typeof MutationObserver,at=/[^ \t\r\n]/,st=Array.prototype.indexOf;Object.create||(Object.create=function(e){var t=function(){};return t.prototype=e,new t});var dt={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,r=this.nodeType,o=this.filter;;){for(e=t.firstChild;!e&&t&&t!==n;)e=t.nextSibling,e||(t=t.parentNode);if(!e)return null;if(dt[e.nodeType]&r&&o(e))return this.currentNode=e,e;t=e}},n.prototype.previousNode=function(){for(var e,t=this.currentNode,n=this.root,r=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(dt[e.nodeType]&r&&o(e))return this.currentNode=e,e;t=e}},n.prototype.previousPONode=function(){for(var e,t=this.currentNode,n=this.root,r=this.nodeType,o=this.filter;;){for(e=t.lastChild;!e&&t&&t!==n;)e=t.previousSibling,e||(t=t.parentNode);if(!e)return null;if(dt[e.nodeType]&r&&o(e))return this.currentNode=e,e;t=e}};var lt=/^(?:#text|A(?:BBR|CRONYM)?|B(?:R|D[IO])?|C(?:ITE|ODE)|D(?:ATA|EL|FN)|EM|FONT|HR|I(?:MG|NPUT|NS)?|KBD|Q|R(?:P|T|UBY)|S(?:AMP|MALL|PAN|TR(?:IKE|ONG)|U[BP])?|U|VAR|WBR)$/,ct={BR:1,IMG:1,INPUT:1},ft=function(e,t){for(var n=e.childNodes;t&&e.nodeType===P;)e=n[t-1],n=e.childNodes,t=n.length;return e},ht=function(e,t){if(e.nodeType===P){var n=e.childNodes;if(t-1,i=e.compareBoundaryPoints(z,r)<1;return!o&&!i}var a=e.compareBoundaryPoints(W,r)<1,s=e.compareBoundaryPoints(q,r)>-1;return a&&s},Ct=function(e){for(var t,n=e.startContainer,r=e.startOffset,i=e.endContainer,a=e.endOffset;n.nodeType!==I&&(t=n.childNodes[r],t&&!o(t));)n=t,r=0;if(a)for(;i.nodeType!==I&&(t=i.childNodes[a-1],t&&!o(t));)i=t,a=v(i);else for(;i.nodeType!==I&&(t=i.firstChild,t&&!o(t));)i=t;e.collapsed?(e.setStart(i,a),e.setEnd(n,r)):(e.setStart(n,r),e.setEnd(i,a))},Nt=function(e,t){var n,r=e.startContainer,o=e.startOffset,i=e.endContainer,a=e.endOffset;for(t||(t=e.commonAncestorContainer);r!==t&&!o;)n=r.parentNode,o=st.call(n.childNodes,r),r=n;for(;i!==t&&a===v(i);)n=i.parentNode,a=st.call(n.childNodes,i)+1,i=n;e.setStart(r,o),e.setEnd(i,a)},St=function(e,t){var n,r=e.startContainer;return i(r)?n=l(r,t):a(r)?n=r:(n=ft(r,e.startOffset),n=c(n,t)),n&&mt(e,n,!0)?n:null},_t=function(e,t){var n,r,o=e.endContainer;if(i(o))n=l(o,t);else if(a(o))n=o;else{if(n=ht(o,e.endOffset),!n)for(n=t;r=n.lastChild;)n=r;n=l(n,t)}return n&&mt(e,n,!0)?n:null},yt=new n(null,H|M,function(e){return e.nodeType===I?at.test(e.data):"IMG"===e.nodeName}),Tt=function(e,t){var n=e.startContainer,r=e.startOffset;if(yt.root=null,n.nodeType===I){if(r)return!1;yt.currentNode=n}else yt.currentNode=ht(n,r);return yt.root=St(e,t),!yt.previousNode()},Et=function(e,t){var n,r=e.endContainer,o=e.endOffset;if(yt.root=null,r.nodeType===I){if(n=r.data.length,n&&n>o)return!1;yt.currentNode=r}else yt.currentNode=ft(r,o);return yt.root=_t(e,t),!yt.nextNode()},bt=function(e,t){var n,r=St(e,t),o=_t(e,t);r&&o&&(n=r.parentNode,e.setStart(n,st.call(n.childNodes,r)),n=o.parentNode,e.setEnd(n,st.call(n.childNodes,o)+1))},xt={8:"backspace",9:"tab",13:"enter",32:"space",33:"pageup",34:"pagedown",37:"left",39:"right",46:"delete",219:"[",221:"]"},kt=function(e){var t=e.keyCode,n=xt[t],r="",o=this.getSelection();e.defaultPrevented||(n||(n=String.fromCharCode(t).toLowerCase(),/^[A-Za-z0-9]$/.test(n)||(n="")),X&&46===e.which&&(n="."),t>111&&124>t&&(n="f"+(t-111)),"backspace"!==n&&"delete"!==n&&(e.altKey&&(r+="alt-"),e.ctrlKey&&(r+="ctrl-"),e.metaKey&&(r+="meta-")),e.shiftKey&&(r+="shift-"),n=r+n,this._keyHandlers[n]?this._keyHandlers[n](this,e,o):1!==n.length||o.collapsed||(this.saveUndoState(o),gt(o,this._root),this._ensureBottomLine(),this.setSelection(o),this._updatePath(o,!0)))},Ot=function(e){return function(t,n){n.preventDefault(),t[e]()}},Bt=function(e,t){return t=t||null,function(n,r){r.preventDefault();var o=n.getSelection();n.hasFormat(e,null,o)?n.changeFormat(null,{tag:e},o):n.changeFormat({tag:e},t,o)}},Lt=function(e,t){try{t||(t=e.getSelection());var n,r=t.startContainer;for(r.nodeType===I&&(r=r.parentNode),n=r;i(n)&&(!n.textContent||n.textContent===Z);)r=n,n=r.parentNode;r!==n&&(t.setStart(n,st.call(n.childNodes,r)),t.collapse(!0),n.removeChild(r),a(n)||(n=l(n,e._root)),_(n,e._root),Ct(t)),r===e._root&&(r=r.firstChild)&&"BR"===r.nodeName&&m(r),e._ensureBottomLine(),e.setSelection(t),e._updatePath(t,!0)}catch(o){e.didError(o)}},At={enter:function(e,t,n){var r,o,i,a=e._root;if(t.preventDefault(),e._recordUndoState(n),un(n.startContainer),e._removeZWS(),e._getRangeAndRemoveBookmark(n),n.collapsed||gt(n,a),r=St(n,a),!r||/^T[HD]$/.test(r.nodeName))return ut(n,e.createElement("BR")),n.collapse(!1),e.setSelection(n),void e._updatePath(n,!0);if((o=u(r,a,"LI"))&&(r=o),!r.textContent){if(u(r,a,"UL")||u(r,a,"OL"))return e.modifyBlocks(fn,n);if(u(r,a,"BLOCKQUOTE"))return e.modifyBlocks(on,n)}for(i=tn(e,r,n.startContainer,n.startOffset),Yt(r),Ht(r),_(r,a);i.nodeType===P;){var s,d=i.firstChild;if("A"===i.nodeName&&(!i.textContent||i.textContent===Z)){d=e._doc.createTextNode(""),C(i,d),i=d;break}for(;d&&d.nodeType===I&&!d.data&&(s=d.nextSibling,s&&"BR"!==s.nodeName);)m(d),d=s;if(!d||"BR"===d.nodeName||d.nodeType===I&&!X)break;i=d}n=e._createRange(i,0),e.setSelection(n),e._updatePath(n,!0)},backspace:function(e,t,n){var r=e._root;if(e._removeZWS(),e.saveUndoState(n),n.collapsed)if(Tt(n,r)){t.preventDefault();var o,i=St(n,r);if(!i)return;if(y(i.parentNode,r),o=l(i,r)){if(!o.isContentEditable)return void m(o);for(b(o,i,n),i=o.parentNode;i!==r&&!i.nextSibling;)i=i.parentNode;i!==r&&(i=i.nextSibling)&&x(i,r),e.setSelection(n)}else if(i){if(u(i,r,"UL")||u(i,r,"OL"))return e.modifyBlocks(fn,n);if(u(i,r,"BLOCKQUOTE"))return e.modifyBlocks(rn,n);e.setSelection(n),e._updatePath(n,!0)}}else e.setSelection(n),setTimeout(function(){Lt(e)},0);else t.preventDefault(),gt(n,r),Lt(e,n)},"delete":function(e,t,n){var r,o,i,a,s,d,l=e._root;if(e._removeZWS(),e.saveUndoState(n),n.collapsed)if(Et(n,l)){if(t.preventDefault(),r=St(n,l),!r)return;if(y(r.parentNode,l),o=c(r,l)){if(!o.isContentEditable)return void m(o);for(b(r,o,n),o=r.parentNode;o!==l&&!o.nextSibling;)o=o.parentNode;o!==l&&(o=o.nextSibling)&&x(o,l),e.setSelection(n),e._updatePath(n,!0)}}else{if(i=n.cloneRange(),Nt(n,e._root),a=n.endContainer,s=n.endOffset,a.nodeType===P&&(d=a.childNodes[s],d&&"IMG"===d.nodeName))return t.preventDefault(),m(d),Ct(n),void Lt(e,n);e.setSelection(i),setTimeout(function(){Lt(e)},0)}else t.preventDefault(),gt(n,l),Lt(e,n)},tab:function(e,t,n){var r,o,i=e._root;if(e._removeZWS(),n.collapsed&&Tt(n,i))for(r=St(n,i);o=r.parentNode;){if("UL"===o.nodeName||"OL"===o.nodeName){r.previousSibling&&(t.preventDefault(),e.modifyBlocks(cn,n));break}r=o}},"shift-tab":function(e,t,n){var r,o=e._root;e._removeZWS(),n.collapsed&&Tt(n,o)&&(r=n.startContainer,(u(r,o,"UL")||u(r,o,"OL"))&&(t.preventDefault(),e.modifyBlocks(fn,n)))},space:function(e,t,n){var r,o;e._recordUndoState(n),un(n.startContainer),e._getRangeAndRemoveBookmark(n),r=n.endContainer,o=r.parentNode,n.collapsed&&"A"===o.nodeName&&!r.nextSibling&&n.endOffset===v(r)&&n.setStartAfter(o),e.setSelection(n)},left:function(e){e._removeZWS()},right:function(e){e._removeZWS()}};Q&&$&&(At["meta-left"]=function(e,t){t.preventDefault();var n=$t(e);n&&n.modify&&n.modify("move","backward","lineboundary")},At["meta-right"]=function(e,t){t.preventDefault();var n=$t(e);n&&n.modify&&n.modify("move","forward","lineboundary")}),Q||(At.pageup=function(e){e.moveCursorToStart()},At.pagedown=function(e){e.moveCursorToEnd()}),At[tt+"b"]=Bt("B"),At[tt+"i"]=Bt("I"),At[tt+"u"]=Bt("U"),At[tt+"shift-7"]=Bt("S"),At[tt+"shift-5"]=Bt("SUB",{tag:"SUP"}),At[tt+"shift-6"]=Bt("SUP",{tag:"SUB"}),At[tt+"shift-8"]=Ot("makeUnorderedList"),At[tt+"shift-9"]=Ot("makeOrderedList"),At[tt+"["]=Ot("decreaseQuoteLevel"),At[tt+"]"]=Ot("increaseQuoteLevel"),At[tt+"y"]=Ot("redo"),At[tt+"z"]=Ot("undo"),At[tt+"shift-z"]=Ot("redo");var Dt={1:10,2:13,3:16,4:18,5:24,6:32,7:48},Rt={backgroundColor:{regexp:at,replace:function(e,t){return S(e,"SPAN",{"class":"highlight",style:"background-color:"+t})}},color:{regexp:at,replace:function(e,t){return S(e,"SPAN",{"class":"colour",style:"color:"+t})}},fontWeight:{regexp:/^bold/i,replace:function(e){return S(e,"B")}},fontStyle:{regexp:/^italic/i,replace:function(e){return S(e,"I")}},fontFamily:{regexp:at,replace:function(e,t){return S(e,"SPAN",{"class":"font",style:"font-family:"+t})}},fontSize:{regexp:at,replace:function(e,t){return S(e,"SPAN",{"class":"size",style:"font-size:"+t})}}},Ut=function(e){return function(t,n){var r=S(t.ownerDocument,e);return n.replaceChild(r,t),r.appendChild(N(t)),r}},Pt={SPAN:function(e,t){var n,r,o,i,a,s,d=e.style,l=e.ownerDocument;for(n in Rt)r=Rt[n],o=d[n],o&&r.regexp.test(o)&&(s=r.replace(l,o),i&&i.appendChild(s),i=s,a||(a=s));return a&&(i.appendChild(N(e)),t.replaceChild(a,e)),i||e},STRONG:Ut("B"),EM:Ut("I"),STRIKE:Ut("S"),FONT:function(e,t){var n,r,o,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&&(r=S(c,"SPAN",{"class":"size",style:"font-size:"+Dt[d]+"px"}),a||(a=r),i&&i.appendChild(r),i=r),l&&/^#?([\dA-F]{3}){1,2}$/i.test(l)&&("#"!==l.charAt(0)&&(l="#"+l),o=S(c,"SPAN",{"class":"colour",style:"color:"+l}),a||(a=o),i&&i.appendChild(o),i=o),a||(a=i=S(c,"SPAN")),t.replaceChild(a,e),i.appendChild(N(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(N(e)),n}},It=/^(?: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)|UL)$/,wt=/^(?:HEAD|META|STYLE)/,Ft=new n(null,H|M,function(){return!0}),Mt=function gn(e,t){var n,r,o,a,s,d,l,c,f,h,u,p,g=e.childNodes;for(n=e;i(n);)n=n.parentNode;for(Ft.root=n,r=0,o=g.length;o>r;r+=1)if(a=g[r],s=a.nodeName,d=a.nodeType,l=Pt[s],d===P){if(c=a.childNodes.length,l)a=l(a,e);else{if(wt.test(s)){e.removeChild(a),r-=1,o-=1;continue}if(!It.test(s)&&!i(a)){r-=1,o+=c-1,e.replaceChild(N(a),a);continue}}c&&gn(a,t||"PRE"===s)}else{if(d===I){if(u=a.data,f=!at.test(u.charAt(0)),h=!at.test(u.charAt(u.length-1)),t||!f&&!h)continue;if(f){for(Ft.currentNode=a;(p=Ft.previousPONode())&&(s=p.nodeName,!("IMG"===s||"#text"===s&&/\S/.test(p.data)));)if(!i(p)){p=null;break}u=u.replace(/^\s+/g,p?" ":"")}if(h){for(Ft.currentNode=a;(p=Ft.nextNode())&&!("IMG"===s||"#text"===s&&/\S/.test(p.data));)if(!i(p)){p=null;break}u=u.replace(/\s+$/g,p?" ":"")}if(u){a.data=u;continue}}e.removeChild(a),r-=1,o-=1}return e},Ht=function vn(e){for(var t,n=e.childNodes,r=n.length;r--;)t=n[r],t.nodeType!==P||o(t)?t.nodeType!==I||t.data||e.removeChild(t):(vn(t),i(t)&&!t.firstChild&&e.removeChild(t))},Wt=function(e){return e.nodeType===P?"BR"===e.nodeName:at.test(e.data)},zt=function(e){for(var t,r=e.parentNode;i(r);)r=r.parentNode;return t=new n(r,M|H,Wt),t.currentNode=e,!!t.nextNode()},qt=function(e,t){var n,r,o,a=e.querySelectorAll("BR"),s=[],d=a.length;for(n=0;d>n;n+=1)s[n]=zt(a[n]);for(;d--;)r=a[d],o=r.parentNode,o&&(s[d]?i(o)||y(o,t):m(r))},Kt=function(e){var t=e.clipboardData,n=this.getSelection(),r=this.createElement("div"),o=this._root,i=this;this.saveUndoState(n),J||j||!t?setTimeout(function(){try{i._ensureBottomLine()}catch(e){i.didError(e)}},0):(Nt(n,o),r.appendChild(gt(n,o)),t.setData("text/html",r.innerHTML),t.setData("text/plain",r.innerText||r.textContent),e.preventDefault()),this.setSelection(n)},Zt=function(e){var t=e.clipboardData,n=this.getSelection(),r=this.createElement("div");J||j||!t||(r.appendChild(n.cloneContents()),t.setData("text/html",r.innerHTML),t.setData("text/plain",r.innerText||r.textContent),e.preventDefault())},Gt=function(e){var t,n,r,o,i,a=e.clipboardData,s=a&&a.items,d=!1,l=!1,c=null,f=this;if(!J&&s){for(e.preventDefault(),t=s.length;t--;){if(n=s[t],r=n.type,"text/html"===r)return void n.getAsString(function(e){f.insertHTML(e,!0)});"text/plain"===r&&(c=n),/^image\/.*/.test(r)&&(l=!0)}return void(l?(this.fireEvent("dragover",{dataTransfer:a,preventDefault:function(){d=!0}}),d&&this.fireEvent("drop",{dataTransfer:a})):c&&n.getAsString(function(e){f.insertPlainText(e,!0)}))}if(o=a&&a.types,!J&&o&&(st.call(o,"text/html")>-1||!$&&st.call(o,"text/plain")>-1&&st.call(o,"text/rtf")<0))return e.preventDefault(),void((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 h=this._doc.body,u=this.getSelection(),p=u.startContainer,g=u.startOffset,v=u.endContainer,C=u.endOffset,N=this.createElement("DIV",{contenteditable:"true",style:"position:fixed; overflow:hidden; top:0; right:100%; width:1px; height:1px;"});h.appendChild(N),u.selectNodeContents(N),this.setSelection(u),setTimeout(function(){try{f._awaitingPaste=!1;for(var e,t,n="",r=N;N=r;)r=N.nextSibling,m(N),e=N.firstChild,e&&e===N.lastChild&&"DIV"===e.nodeName&&(N=e),n+=N.innerHTML;t=f._createRange(p,g,v,C),f.setSelection(t),n&&f.insertHTML(n,!0)}catch(o){f.didError(o)}},0)},Vt=[],jt=B.prototype;jt.setConfig=function(e){return e=O({blockTag:"DIV",blockAttributes:null,tagAttributes:{blockquote:null,ul:null,ol:null,li:null}},e),e.blockTag=e.blockTag.toUpperCase(),this._config=e,this},jt.createElement=function(e,t,n){return S(this._doc,e,t,n)},jt.createDefaultBlock=function(e){var t=this._config;return _(this.createElement(t.blockTag,t.blockAttributes,e),this._root)},jt.didError=function(e){console.log(e)},jt.getDocument=function(){return this._doc},jt.getRoot=function(){return this._root};var Qt={pathChange:1,select:1,input:1,undoStateChange:1,dragover:1,drop:1};jt.fireEvent=function(e,t){var n,r,o=this._events[e];if(o)for(t||(t={}),t.type!==e&&(t.type=e),o=o.slice(),n=o.length;n--;){r=o[n];try{r.handleEvent?r.handleEvent(t):r.call(this,t)}catch(i){i.details="Squire: fireEvent error. Event type: "+e,this.didError(i)}}return this},jt.destroy=function(){var e,t=this._root,n=this._events;for(e in n)Qt[e]||t.removeEventListener(e,this,!0);this._mutation&&this._mutation.disconnect();for(var r=Vt.length;r--;)Vt[r]===this&&Vt.splice(r,1)},jt.handleEvent=function(e){this.fireEvent(e.type,e)},jt.addEventListener=function(e,t){var n=this._events[e];return t?(n||(n=this._events[e]=[],Qt[e]||this._root.addEventListener(e,this,!0)),n.push(t),this):(this.didError({name:"Squire: addEventListener with null or undefined fn",message:"Event type: "+e}),this)},jt.removeEventListener=function(e,t){var n,r=this._events[e];if(r){for(n=r.length;n--;)r[n]===t&&r.splice(n,1);r.length||(delete this._events[e],Qt[e]||this._root.removeEventListener(e,this,!0))}return this},jt._createRange=function(e,t,n,r){if(e instanceof this._win.Range)return e.cloneRange();var o=this._doc.createRange();return o.setStart(e,t),n?o.setEnd(n,r):o.setEnd(e,t),o},jt.getCursorPosition=function(e){if(!e&&!(e=this.getSelection())||!e.getBoundingClientRect)return null;var t,n,r=e.getBoundingClientRect();return r&&!r.top&&(this._ignoreChange=!0,t=this._doc.createElement("SPAN"),t.textContent=Z,ut(e,t),r=t.getBoundingClientRect(),n=t.parentNode,n.removeChild(t),E(n,{startContainer:e.startContainer,endContainer:e.endContainer,startOffset:e.startOffset,endOffset:e.endOffset})),r},jt._moveCursorTo=function(e){var t=this._root,n=this._createRange(t,e?0:t.childNodes.length);return Ct(n),this.setSelection(n),this},jt.moveCursorToStart=function(){return this._moveCursorTo(!0)},jt.moveCursorToEnd=function(){return this._moveCursorTo(!1)};var $t=function(e){return e._win.getSelection()||null};jt.setSelection=function(e){if(e){this._restoreSelection=!1,this._lastSelection=e,j&&this._win.focus();var t=$t(this);t&&(t.removeAllRanges(),t.addRange(e))}return this},jt.getSelection=function(){var e,t,n,r=$t(this),i=this._root;return r&&r.rangeCount&&(e=r.getRangeAt(0).cloneRange(),t=e.startContainer,n=e.endContainer,t&&o(t)&&e.setStartBefore(t),n&&o(n)&&e.setEndBefore(n)),e&&p(i,e.commonAncestorContainer)?this._lastSelection=e:e=this._lastSelection,e||(e=this._createRange(i.firstChild,0)),e},jt.getSelectedText=function(){var e,t=this.getSelection(),r=new n(t.commonAncestorContainer,H|M,function(e){return mt(t,e,!0)}),o=t.startContainer,a=t.endContainer,s=r.currentNode=o,d="",l=!1;for(r.filter(s)||(s=r.nextNode());s;)s.nodeType===I?(e=s.data,e&&/\S/.test(e)&&(s===a&&(e=e.slice(0,t.endOffset)),s===o&&(e=e.slice(t.startOffset)),d+=e,l=!0)):("BR"===s.nodeName||l&&!i(s))&&(d+="\n",l=!1),s=r.nextNode();return d},jt.getPath=function(){return this._path};var Yt=function(e){for(var t,r,o,a=new n(e,H,function(){return!0},!1);r=a.nextNode();)for(;(o=r.data.indexOf(Z))>-1;){if(1===r.length){do t=r.parentNode,t.removeChild(r),r=t,a.currentNode=t;while(i(r)&&!v(r));break}r.deleteData(o,1)}};jt._didAddZWS=function(){this._hasZWS=!0},jt._removeZWS=function(){this._hasZWS&&(Yt(this._root),this._hasZWS=!1)},jt._updatePath=function(e,t){var n,r=e.startContainer,o=e.endContainer;(t||r!==this._lastAnchorNode||o!==this._lastFocusNode)&&(this._lastAnchorNode=r,this._lastFocusNode=o,n=r&&o?r===o?g(o,this._root):"(selection)":"",this._path!==n&&(this._path=n,this.fireEvent("pathChange",{path:n}))),e.collapsed||this.fireEvent("select")},jt._updatePathOnEvent=function(){this._updatePath(this.getSelection())},jt.focus=function(){return this._root.focus(),this},jt.blur=function(){return this._root.blur(),this};var Xt="squire-selection-start",Jt="squire-selection-end";jt._saveRangeToBookmark=function(e){var t,n=this.createElement("INPUT",{id:Xt,type:"hidden"}),r=this.createElement("INPUT",{id:Jt,type:"hidden"});ut(e,n),e.collapse(!1),ut(e,r),n.compareDocumentPosition(r)&U&&(n.id=Jt,r.id=Xt,t=n,n=r,r=t),e.setStartAfter(n),e.setEndBefore(r)},jt._getRangeAndRemoveBookmark=function(e){var t=this._root,n=t.querySelector("#"+Xt),r=t.querySelector("#"+Jt);if(n&&r){var o,i=n.parentNode,a=r.parentNode,s={startContainer:i,endContainer:a,startOffset:st.call(i.childNodes,n),endOffset:st.call(a.childNodes,r)};i===a&&(s.endOffset-=1),m(n),m(r),E(i,s),i!==a&&E(a,s),e||(e=this._doc.createRange()),e.setStart(s.startContainer,s.startOffset),e.setEnd(s.endContainer,s.endOffset),o=e.collapsed,o&&(i=e.startContainer,i.nodeType===I&&(a=i.childNodes[e.startOffset],a&&a.nodeType===I||(a=i.childNodes[e.startOffset-1]),a&&a.nodeType===I&&(e.setStart(a,0),e.collapse(!0))))}return e||null},jt._keyUpDetectChange=function(e){var t=e.keyCode;e.ctrlKey||e.metaKey||e.altKey||!(16>t||t>20)||!(33>t||t>45)||this._docWasChanged()},jt._docWasChanged=function(){return it&&this._ignoreChange?void(this._ignoreChange=!1):(this._isInUndoState&&(this._isInUndoState=!1,this.fireEvent("undoStateChange",{canUndo:!0,canRedo:!1})),void this.fireEvent("input"))},jt._recordUndoState=function(e){if(!this._isInUndoState){var t=this._undoIndex+=1,n=this._undoStack;te+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},jt.hasFormat=function(e,t,r){if(e=e.toUpperCase(),t||(t={}),!r&&!(r=this.getSelection()))return!1;!r.collapsed&&r.startContainer.nodeType===I&&r.startOffset===r.startContainer.length&&r.startContainer.nextSibling&&r.setStartBefore(r.startContainer.nextSibling),!r.collapsed&&r.endContainer.nodeType===I&&0===r.endOffset&&r.endContainer.previousSibling&&r.setEndAfter(r.endContainer.previousSibling);var o,i,a=this._root,s=r.commonAncestorContainer;if(u(s,a,e,t))return!0;if(s.nodeType===I)return!1;o=new n(s,H,function(e){return mt(r,e,!0)},!1);for(var d=!1;i=o.nextNode();){if(!u(i,a,e,t))return!1;d=!0}return d},jt.getFontInfo=function(e){var n,r,o,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===I)for(n.nodeType===I&&(n=n.parentNode);4>a&&n;)(r=n.style)&&(!i.color&&(o=r.color)&&(i.color=o,a+=1),!i.backgroundColor&&(o=r.backgroundColor)&&(i.backgroundColor=o,a+=1),!i.family&&(o=r.fontFamily)&&(i.family=o,a+=1),!i.size&&(o=r.fontSize)&&(i.size=o,a+=1)),n=n.parentNode;return i},jt._addFormat=function(e,t,r){var o,i,a,s,d,l,c,f,h=this._root;if(r.collapsed)o=_(this.createElement(e,t),h),ut(r,o),r.setStart(o.firstChild,o.firstChild.length),r.collapse(!0);else{if(i=new n(r.commonAncestorContainer,H|M,function(e){return(e.nodeType===I||"BR"===e.nodeName||"IMG"===e.nodeName)&&mt(r,e,!0)},!1),a=r.startContainer,d=r.startOffset,s=r.endContainer,l=r.endOffset,i.currentNode=a,i.filter(a)||(a=i.nextNode(),d=0),!a)return r;do c=i.currentNode,f=!u(c,h,e,t),f&&(c===s&&c.length>l&&c.splitText(l),c===a&&d&&(c=c.splitText(d),s===a&&(s=c,l-=d),a=c,d=0),o=this.createElement(e,t),C(c,o),o.appendChild(c));while(i.nextNode());s.nodeType!==I&&(c.nodeType===I?(s=c,l=c.length):(s=c.parentNode,l=1)),r=this._createRange(a,d,s,l)}return r},jt._removeFormat=function(e,t,n,r){this._saveRangeToBookmark(n);var o,a=this._doc;n.collapsed&&(rt?(o=a.createTextNode(Z),this._didAddZWS()):o=a.createTextNode(""),ut(n,o));for(var s=n.commonAncestorContainer;i(s);)s=s.parentNode;var d=n.startContainer,l=n.startOffset,c=n.endContainer,f=n.endOffset,u=[],p=function(e,t){if(!mt(n,e,!1)){var r,o,i=e.nodeType===I;if(!mt(n,e,!0))return void("INPUT"===e.nodeName||i&&!e.data||u.push([t,e]));if(i)e===c&&f!==e.length&&u.push([t,e.splitText(f)]),e===d&&l&&(e.splitText(l),u.push([t,e])); -else for(r=e.firstChild;r;r=o)o=r.nextSibling,p(r,t)}},g=Array.prototype.filter.call(s.getElementsByTagName(e),function(r){return mt(n,r,!0)&&h(r,e,t)});r||g.forEach(function(e){p(e,e)}),u.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),o&&n.collapse(!1);var v={startContainer:n.startContainer,startOffset:n.startOffset,endContainer:n.endContainer,endOffset:n.endOffset};return E(s,v),n.setStart(v.startContainer,v.startOffset),n.setEnd(v.endContainer,v.endOffset),n},jt.changeFormat=function(e,t,n,r){return n||(n=this.getSelection())?(this.saveUndoState(n),t&&(n=this._removeFormat(t.tag.toUpperCase(),t.attributes||{},n,r)),e&&(n=this._addFormat(e.tag.toUpperCase(),e.attributes||{},n)),this.setSelection(n),this._updatePath(n,!0),it||this._docWasChanged(),this):void 0};var en={DT:"DD",DD:"DT",LI:"LI"},tn=function(e,t,n,r){var o=en[t.nodeName],i=null,a=T(n,r,t.parentNode,e._root),s=e._config;return o||(o=s.blockTag,i=s.blockAttributes),h(a,o,i)||(t=S(a.ownerDocument,o,i),a.dir&&(t.dir=a.dir),C(a,t),t.appendChild(N(a)),a=t),a};jt.forEachBlock=function(e,t,n){if(!n&&!(n=this.getSelection()))return this;t&&this.saveUndoState(n);var r=this._root,o=St(n,r),i=_t(n,r);if(o&&i)do if(e(o)||o===i)break;while(o=c(o,r));return t&&(this.setSelection(n),this._updatePath(n,!0),it||this._docWasChanged()),this},jt.modifyBlocks=function(e,t){if(!t&&!(t=this.getSelection()))return this;this._isInUndoState?this._saveRangeToBookmark(t):this._recordUndoState(t);var n,r=this._root;return bt(t,r),Nt(t,r),n=pt(t,r,r),ut(t,e.call(this,n)),t.endOffsett;t+=1){for(o=d[t],i=N(o),a=i.childNodes,r=a.length;r--;)s=a[r],C(s,N(s));y(i,this._root),C(o,i)}return e},cn=function(e){var t,n,r,o,i,a,d=e.querySelectorAll("LI"),l=this._config.tagAttributes,c=l.li;for(t=0,n=d.length;n>t;t+=1)r=d[t],s(r.firstChild)||(o=r.parentNode.nodeName,i=r.previousSibling,i&&(i=i.lastChild)&&i.nodeName===o||(a=l[o.toLowerCase()],C(r,this.createElement("LI",c,[i=this.createElement(o,a)]))),i.appendChild(r));return e},fn=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 r,o=n.parentNode,i=o.parentNode,a=n.firstChild,d=a;for(n.previousSibling&&(o=T(o,n,i,t));d&&(r=d.nextSibling,!s(d));)i.insertBefore(d,o),d=r;for("LI"===i.nodeName&&a.previousSibling&&T(i,a,i.parentNode,t);n!==e&&!n.childNodes.length;)o=n.parentNode,o.removeChild(n),n=o},this),y(e,t),e};jt._ensureBottomLine=function(){var e=this._root,t=e.lastElementChild;t&&t.nodeName===this._config.blockTag&&a(t)||e.appendChild(this.createDefaultBlock())},jt.setKeyHandler=function(e,t){return this._keyHandlers[e]=t,this},jt._getHTML=function(){return this._root.innerHTML},jt._setHTML=function(e){var t=this._root,n=t;n.innerHTML=e;do _(n,t);while(n=c(n,t));this._ignoreChange=!0},jt.getHTML=function(e){var t,n,r,o,i,a,s=[];if(e&&(a=this.getSelection())&&this._saveRangeToBookmark(a),nt)for(t=this._root,n=t;n=c(n,t);)n.textContent||n.querySelector("BR")||(r=this.createElement("BR"),n.appendChild(r),s.push(r));if(o=this._getHTML().replace(/\u200B/g,""),nt)for(i=s.length;i--;)m(s[i]);return a&&this._getRangeAndRemoveBookmark(a),o},jt.setHTML=function(e){var t,n=this._doc.createDocumentFragment(),r=this.createElement("DIV"),o=this._root;r.innerHTML=e,n.appendChild(N(r)),Mt(n),qt(n,o),y(n,o);for(var i=n;i=c(i,o);)_(i,o);for(this._ignoreChange=!0;t=o.lastChild;)o.removeChild(t);o.appendChild(n),_(o,o),this._undoIndex=-1,this._undoStack.length=0,this._undoStackLength=0,this._isInUndoState=!1;var a=this._getRangeAndRemoveBookmark()||this._createRange(o.firstChild,0);return this.saveUndoState(a),this._lastSelection=a,this._updatePath(a,!0),this},jt.insertElement=function(e,t){if(t||(t=this.getSelection()),t.collapse(!0),i(e))ut(t,e),t.setStartAfter(e);else{for(var n,r,o=this._root,a=St(t,o)||o;a!==o&&!a.nextSibling;)a=a.parentNode;a!==o&&(n=a.parentNode,r=T(n,a.nextSibling,o,o)),r?o.insertBefore(e,r):(o.appendChild(e),r=this.createDefaultBlock(),o.appendChild(r)),t.setStart(r,0),t.setEnd(r,0),Ct(t)}return this.focus(),this.setSelection(t),this._updatePath(t),this},jt.insertImage=function(e,t){var n=this.createElement("IMG",O({src:e},t));return this.insertElement(n),n};var hn=/\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,un=function(e,t){for(var r,o,i,a,s,d,l,c=e.ownerDocument,f=new n(e,H,function(e){return!u(e,t,"A")},!1);r=f.nextNode();)for(o=r.data,i=r.parentNode;a=hn.exec(o);)s=a.index,d=s+a[0].length,s&&(l=c.createTextNode(o.slice(0,s)),i.insertBefore(l,r)),l=c.createElement("A"),l.textContent=o.slice(s,d),l.href=a[1]?/^(?:ht|f)tps?:/.test(a[1])?a[1]:"http://"+a[1]:"mailto:"+a[2],i.insertBefore(l,r),r.data=o=o.slice(d)};jt.insertHTML=function(e,t){var n=this.getSelection(),r=this._doc.createDocumentFragment(),o=this.createElement("DIV");o.innerHTML=e,r.appendChild(N(o)),this.saveUndoState(n);try{var i=this._root,a=r,s={fragment:r,preventDefault:function(){this.defaultPrevented=!0},defaultPrevented:!1};for(un(r,i),Mt(r),qt(r,i),Ht(r),r.normalize();a=c(a,i);)_(a,i);t&&this.fireEvent("willPaste",s),s.defaultPrevented||(vt(n,s.fragment,i),it||this._docWasChanged(),n.collapse(!1),this._ensureBottomLine()),this.setSelection(n),this._updatePath(n,!0)}catch(d){this.didError(d)}return this},jt.insertPlainText=function(e,t){var n,r,o,i=e.split("\n");for(n=0,r=i.length;r>n;n+=1)o=i[n],o=o.split("&").join("&").split("<").join("<").split(">").join(">").replace(/ (?= )/g," "),n&&r>n+1&&(o="
"+(o||"
")+"
"),i[n]=o;return this.insertHTML(i.join(""),t)};var pn=function(e,t,n){return function(){return this[e](t,n),this.focus()}};jt.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},jt.bold=pn("changeFormat",{tag:"B"}),jt.italic=pn("changeFormat",{tag:"I"}),jt.underline=pn("changeFormat",{tag:"U"}),jt.strikethrough=pn("changeFormat",{tag:"S"}),jt.subscript=pn("changeFormat",{tag:"SUB"},{tag:"SUP"}),jt.superscript=pn("changeFormat",{tag:"SUP"},{tag:"SUB"}),jt.removeBold=pn("changeFormat",null,{tag:"B"}),jt.removeItalic=pn("changeFormat",null,{tag:"I"}),jt.removeUnderline=pn("changeFormat",null,{tag:"U"}),jt.removeStrikethrough=pn("changeFormat",null,{tag:"S"}),jt.removeSubscript=pn("changeFormat",null,{tag:"SUB"}),jt.removeSuperscript=pn("changeFormat",null,{tag:"SUP"}),jt.makeLink=function(e,t){var n=this.getSelection();if(n.collapsed){var r=e.indexOf(":")+1;if(r)for(;"/"===e[r];)r+=1;ut(n,this._doc.createTextNode(e.slice(r)))}return t||(t={}),t.href=e,this.changeFormat({tag:"A",attributes:t},{tag:"A"},n),this.focus()},jt.removeLink=function(){return this.changeFormat(null,{tag:"A"},this.getSelection(),!0),this.focus()},jt.setFontFace=function(e){return this.changeFormat({tag:"SPAN",attributes:{"class":"font",style:"font-family: "+e+", sans-serif;"}},{tag:"SPAN",attributes:{"class":"font"}}),this.focus()},jt.setFontSize=function(e){return this.changeFormat({tag:"SPAN",attributes:{"class":"size",style:"font-size: "+("number"==typeof e?e+"px":e)}},{tag:"SPAN",attributes:{"class":"size"}}),this.focus()},jt.setTextColour=function(e){return this.changeFormat({tag:"SPAN",attributes:{"class":"colour",style:"color:"+e}},{tag:"SPAN",attributes:{"class":"colour"}}),this.focus()},jt.setHighlightColour=function(e){return this.changeFormat({tag:"SPAN",attributes:{"class":"highlight",style:"background-color:"+e}},{tag:"SPAN",attributes:{"class":"highlight"}}),this.focus()},jt.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()},jt.setTextDirection=function(e){return this.forEachBlock(function(t){t.dir=e},!0),this.focus()},jt.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||(bt(e,t),n=t),n.nodeType===I)return this;this.saveUndoState(e),Nt(e,n);for(var r,o,i,s=n.ownerDocument,d=e.startContainer,l=e.startOffset,c=e.endContainer,f=e.endOffset,h=s.createDocumentFragment(),u=s.createDocumentFragment(),p=T(c,f,n,t),g=T(d,l,n,t);g!==p;)r=g.nextSibling,h.appendChild(g),g=r;return R(this,h,u),u.normalize(),g=u.firstChild,r=u.lastChild,i=n.childNodes,g?(n.insertBefore(u,p),l=st.call(i,g),f=st.call(i,r)+1):(l=st.call(i,p),f=l),o={startContainer:n,startOffset:l,endContainer:n,endOffset:f},E(n,o),e.setStart(o.startContainer,o.startOffset),e.setEnd(o.endContainer,o.endOffset),Ct(e),this.setSelection(e),this._updatePath(e,!0),this.focus()},jt.increaseQuoteLevel=pn("modifyBlocks",nn),jt.decreaseQuoteLevel=pn("modifyBlocks",rn),jt.makeUnorderedList=pn("modifyBlocks",sn),jt.makeOrderedList=pn("modifyBlocks",dn),jt.removeList=pn("modifyBlocks",ln),jt.increaseListLevel=pn("modifyBlocks",cn),jt.decreaseListLevel=pn("modifyBlocks",fn),"object"==typeof exports?module.exports=B:"function"==typeof define&&define.amd?define(function(){return B}):(G.Squire=B,top!==G&&"true"===e.documentElement.getAttribute("data-squireinit")&&(G.editor=new B(e),G.onEditorLoad&&(G.onEditorLoad(G.editor),G.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 r(e,t){for(var n=e.length;n--;)if(!t(e[n]))return!1;return!0}function o(e){return e.nodeType===P&&!!ce[e.nodeName]}function i(e){return le.test(e.nodeName)}function a(e){var t=e.nodeType;return(t===P||t===F)&&!i(e)&&r(e.childNodes,i)}function s(e){var t=e.nodeType;return!(t!==P&&t!==F||i(e)||a(e))}function d(e,t){var r=new n(t,M,a);return r.currentNode=e,r}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 f(e,t){return!o(e)&&e.nodeType===t.nodeType&&e.nodeName===t.nodeName&&e.className===t.className&&(!e.style&&!t.style||e.style.cssText===t.style.cssText)}function h(e,t,n){if(e.nodeName!==t)return!1;for(var r in n)if(e.getAttribute(r)!==n[r])return!1;return!0}function u(e,t,n,r){for(;e&&e!==t;){if(h(e,n,r))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,r,o,i,a="";return e&&e!==t&&(a=g(e.parentNode,t),e.nodeType===P&&(a+=(a?">":"")+e.nodeName,(n=e.id)&&(a+="#"+n),(r=e.className.trim())&&(o=r.split(/\s\s*/),o.sort(),a+=".",a+=o.join(".")),(i=e.dir)&&(a+="[dir="+i+"]"))),a}function m(e){var t=e.nodeType;return t===P?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,r=n?n.length:0;r--;)t.appendChild(e.firstChild);return t}function S(e,n,r,o){var i,a,s,d,l=e.createElement(n);if(r instanceof Array&&(o=r,r=null),r)for(i in r)a=r[i],a!==t&&l.setAttribute(i,r[i]);if(o)for(s=0,d=o.length;d>s;s+=1)l.appendChild(o[s]);return l}function _(e,t){var n,r,a=e.ownerDocument,s=e;if(e===t&&((r=e.firstChild)&&"BR"!==r.nodeName||(n=k(a).createDefaultBlock(),r?e.replaceChild(n,r):e.appendChild(n),e=n,n=null)),e.nodeType===I)return s;if(i(e)){for(r=e.firstChild;re&&r&&r.nodeType===I&&!r.data;)e.removeChild(r),r=e.firstChild;r||(re?(n=a.createTextNode(Z),k(a)._didAddZWS()):n=a.createTextNode(""))}else if(ne){for(;e.nodeType!==I&&!o(e);){if(r=e.firstChild,!r){n=a.createTextNode("");break}e=r}e.nodeType===I?/^ +$/.test(e.data)&&(e.data=""):o(e)&&e.parentNode.insertBefore(a.createTextNode(""),e)}else if(!e.querySelector("BR"))for(n=S(a,"BR");(r=e.lastElementChild)&&!i(r);)e=r;if(n)try{e.appendChild(n)}catch(d){k(a).didError({name:"Squire: fixCursor – "+d,message:"Parent: "+e.nodeName+"/"+e.innerHTML+" appendChild: "+n.nodeName})}return s}function y(e,t){var n,r,o,a,d=e.childNodes,l=e.ownerDocument,c=null,f=k(l)._config;for(n=0,r=d.length;r>n;n+=1)o=d[n],a="BR"===o.nodeName,!a&&i(o)?(c||(c=S(l,f.blockTag,f.blockAttributes)),c.appendChild(o),n-=1,r-=1):(a||c)&&(c||(c=S(l,f.blockTag,f.blockAttributes)),_(c,t),a?e.replaceChild(c,o):(e.insertBefore(c,o),n+=1,r+=1),c=null),s(o)&&y(o,t);return c&&e.appendChild(_(c,t)),e}function T(e,t,n,r){var o,i,a,s=e.nodeType;if(s===I&&e!==n)return T(e.parentNode,e.splitText(t),n,r);if(s===P){if("number"==typeof t&&(t=ts?t.startOffset-=1:t.startOffset===s&&(t.startContainer=r,t.startOffset=m(r))),t.endContainer===e&&(t.endOffset>s?t.endOffset-=1:t.endOffset===s&&(t.endContainer=r,t.endOffset=m(r))),v(n),n.nodeType===I?r.appendData(n.data):d.push(N(n));else if(n.nodeType===P){for(o=d.length;o--;)n.appendChild(d.pop());b(n,t)}}function E(e,t,n){for(var r,o,i,a=t;1===a.parentNode.childNodes.length;)a=a.parentNode;v(a),o=e.childNodes.length,r=e.lastChild,r&&"BR"===r.nodeName&&(e.removeChild(r),o-=1),i={startContainer:e,startOffset:o,endContainer:e,endOffset:o},e.appendChild(N(t)),b(e,i),n.setStart(i.startContainer,i.startOffset),n.collapse(!0),X&&(r=e.lastChild)&&"BR"===r.nodeName&&e.removeChild(r)}function x(e,t){var n,r,o=e.previousSibling,i=e.firstChild,a=e.ownerDocument,d="LI"===e.nodeName;if(!d||i&&/^[OU]L$/.test(i.nodeName))if(o&&f(o,e)){if(!s(o)){if(!d)return;r=S(a,"DIV"),r.appendChild(N(o)),o.appendChild(r)}v(e),n=!s(e),o.appendChild(N(e)),n&&y(o,t),i&&x(i,t)}else d&&(o=S(a,"DIV"),e.insertBefore(o,i),_(o,t))}function k(e){for(var t,n=Ve.length;n--;)if(t=Ve[n],t._doc===e)return t;return null}function O(e,t){var n,r;e||(e={});for(n in t)r=t[n],e[n]=r&&r.constructor===Object?O(e[n],r):r;return e}function B(e,t){e.nodeType===w&&(e=e.body);var n,r=e.ownerDocument,o=r.defaultView;this._win=o,this._doc=r,this._root=e,this._events={},this._lastSelection=null,oe&&this.addEventListener("beforedeactivate",this.getSelection),this._hasZWS=!1,this._lastAnchorNode=null,this._lastFocusNode=null,this._path="",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,ie?(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",L),this.addEventListener("input",A),this.addEventListener("mousedown",A),this.addEventListener("touchstart",A),this.addEventListener("focus",D),this._awaitingPaste=!1,this.addEventListener(Y?"beforecut":"cut",Ke),this.addEventListener("copy",Ze),this.addEventListener(Y?"beforepaste":"paste",Ge),this.addEventListener(X?"keypress":"keydown",ke),this._keyHandlers=Object.create(Ae),this.setConfig(t),Y&&(o.Text.prototype.splitText=function(e){var t=this.ownerDocument.createTextNode(this.data.slice(e)),n=this.nextSibling,r=this.parentNode,o=this.length-e;return n?r.insertBefore(t,n):r.appendChild(t),o&&this.deleteData(e,o),t}),e.setAttribute("contenteditable","true");try{r.execCommand("enableObjectResizing",!1,"false"),r.execCommand("enableInlineTableEditing",!1,"false")}catch(i){}Ve.push(this),this.setHTML("")}function L(){this._restoreSelection=!0}function A(){this._restoreSelection=!1}function D(){this._restoreSelection&&this.setSelection(this._lastSelection)}function R(e,t,n){var r,o;for(r=t.firstChild;r;r=o){if(o=r.nextSibling,i(r)){if(r.nodeType===I||"BR"===r.nodeName||"IMG"===r.nodeName){n.appendChild(r);continue}}else if(a(r)){n.appendChild(e.createDefaultBlock([R(e,r,e._doc.createDocumentFragment())]));continue}R(e,r,n)}return n}var U=2,P=1,I=3,w=9,F=11,M=1,H=4,W=0,z=1,q=2,K=3,Z="​",G=e.defaultView,V=navigator.userAgent,j=/iP(?:ad|hone|od)/.test(V),Q=/Mac OS X/.test(V),$=/Gecko\//.test(V),Y=/Trident\/[456]\./.test(V),X=!!G.opera,J=/Edge\//.test(V),ee=!J&&/WebKit\//.test(V),te=Q?"meta-":"ctrl-",ne=Y||X,re=Y||ee,oe=Y,ie="undefined"!=typeof MutationObserver,ae=/[^ \t\r\n]/,se=Array.prototype.indexOf;Object.create||(Object.create=function(e){var t=function(){};return t.prototype=e,new t});var de={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,r=this.nodeType,o=this.filter;;){for(e=t.firstChild;!e&&t&&t!==n;)e=t.nextSibling,e||(t=t.parentNode);if(!e)return null;if(de[e.nodeType]&r&&o(e))return this.currentNode=e,e;t=e}},n.prototype.previousNode=function(){for(var e,t=this.currentNode,n=this.root,r=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(de[e.nodeType]&r&&o(e))return this.currentNode=e,e;t=e}},n.prototype.previousPONode=function(){for(var e,t=this.currentNode,n=this.root,r=this.nodeType,o=this.filter;;){for(e=t.lastChild;!e&&t&&t!==n;)e=t.previousSibling,e||(t=t.parentNode);if(!e)return null;if(de[e.nodeType]&r&&o(e))return this.currentNode=e,e;t=e}};var le=/^(?:#text|A(?:BBR|CRONYM)?|B(?:R|D[IO])?|C(?:ITE|ODE)|D(?:ATA|EL|FN)|EM|FONT|HR|I(?:MG|NPUT|NS)?|KBD|Q|R(?:P|T|UBY)|S(?:AMP|MALL|PAN|TR(?:IKE|ONG)|U[BP])?|U|VAR|WBR)$/,ce={BR:1,IMG:1,INPUT:1},fe=function(e,t){for(var n=e.childNodes;t&&e.nodeType===P;)e=n[t-1],n=e.childNodes,t=n.length;return e},he=function(e,t){if(e.nodeType===P){var n=e.childNodes;if(t-1,i=e.compareBoundaryPoints(z,r)<1;return!o&&!i}var a=e.compareBoundaryPoints(W,r)<1,s=e.compareBoundaryPoints(q,r)>-1;return a&&s},Ce=function(e){for(var t,n=e.startContainer,r=e.startOffset,i=e.endContainer,a=e.endOffset;n.nodeType!==I&&(t=n.childNodes[r],t&&!o(t));)n=t,r=0;if(a)for(;i.nodeType!==I&&(t=i.childNodes[a-1],t&&!o(t));)i=t,a=m(i);else for(;i.nodeType!==I&&(t=i.firstChild,t&&!o(t));)i=t;e.collapsed?(e.setStart(i,a),e.setEnd(n,r)):(e.setStart(n,r),e.setEnd(i,a))},Ne=function(e,t){var n,r=e.startContainer,o=e.startOffset,i=e.endContainer,a=e.endOffset;for(t||(t=e.commonAncestorContainer);r!==t&&!o;)n=r.parentNode,o=se.call(n.childNodes,r),r=n;for(;i!==t&&a===m(i);)n=i.parentNode,a=se.call(n.childNodes,i)+1,i=n;e.setStart(r,o),e.setEnd(i,a)},Se=function(e,t){var n,r=e.startContainer;return i(r)?n=l(r,t):a(r)?n=r:(n=fe(r,e.startOffset),n=c(n,t)),n&&ve(e,n,!0)?n:null},_e=function(e,t){var n,r,o=e.endContainer;if(i(o))n=l(o,t);else if(a(o))n=o;else{if(n=he(o,e.endOffset),!n)for(n=t;r=n.lastChild;)n=r;n=l(n,t)}return n&&ve(e,n,!0)?n:null},ye=new n(null,H|M,function(e){return e.nodeType===I?ae.test(e.data):"IMG"===e.nodeName}),Te=function(e,t){var n=e.startContainer,r=e.startOffset;if(ye.root=null,n.nodeType===I){if(r)return!1;ye.currentNode=n}else ye.currentNode=he(n,r);return ye.root=Se(e,t),!ye.previousNode()},be=function(e,t){var n,r=e.endContainer,o=e.endOffset;if(ye.root=null,r.nodeType===I){if(n=r.data.length,n&&n>o)return!1;ye.currentNode=r}else ye.currentNode=fe(r,o);return ye.root=_e(e,t),!ye.nextNode()},Ee=function(e,t){var n,r=Se(e,t),o=_e(e,t);r&&o&&(n=r.parentNode,e.setStart(n,se.call(n.childNodes,r)),n=o.parentNode,e.setEnd(n,se.call(n.childNodes,o)+1))},xe={8:"backspace",9:"tab",13:"enter",32:"space",33:"pageup",34:"pagedown",37:"left",39:"right",46:"delete",219:"[",221:"]"},ke=function(e){var t=e.keyCode,n=xe[t],r="",o=this.getSelection();e.defaultPrevented||(n||(n=String.fromCharCode(t).toLowerCase(),/^[A-Za-z0-9]$/.test(n)||(n="")),X&&46===e.which&&(n="."),t>111&&124>t&&(n="f"+(t-111)),"backspace"!==n&&"delete"!==n&&(e.altKey&&(r+="alt-"),e.ctrlKey&&(r+="ctrl-"),e.metaKey&&(r+="meta-")),e.shiftKey&&(r+="shift-"),n=r+n,this._keyHandlers[n]?this._keyHandlers[n](this,e,o):1!==n.length||o.collapsed||(this.saveUndoState(o),ge(o,this._root),this._ensureBottomLine(),this.setSelection(o),this._updatePath(o,!0)))},Oe=function(e){return function(t,n){n.preventDefault(),t[e]()}},Be=function(e,t){return t=t||null,function(n,r){r.preventDefault();var o=n.getSelection();n.hasFormat(e,null,o)?n.changeFormat(null,{tag:e},o):n.changeFormat({tag:e},t,o)}},Le=function(e,t){try{t||(t=e.getSelection());var n,r=t.startContainer;for(r.nodeType===I&&(r=r.parentNode),n=r;i(n)&&(!n.textContent||n.textContent===Z);)r=n,n=r.parentNode;r!==n&&(t.setStart(n,se.call(n.childNodes,r)),t.collapse(!0),n.removeChild(r),a(n)||(n=l(n,e._root)),_(n,e._root),Ce(t)),r===e._root&&(r=r.firstChild)&&"BR"===r.nodeName&&v(r),e._ensureBottomLine(),e.setSelection(t),e._updatePath(t,!0)}catch(o){e.didError(o)}},Ae={enter:function(e,t,n){var r,o,i,a=e._root;if(t.preventDefault(),e._recordUndoState(n),ht(n.startContainer),e._removeZWS(),e._getRangeAndRemoveBookmark(n),n.collapsed||ge(n,a),r=Se(n,a),!r||/^T[HD]$/.test(r.nodeName))return ue(n,e.createElement("BR")),n.collapse(!1),e.setSelection(n),void e._updatePath(n,!0);if((o=u(r,a,"LI"))&&(r=o),!r.textContent){if(u(r,a,"UL")||u(r,a,"OL"))return e.modifyBlocks(ct,n);if(u(r,a,"BLOCKQUOTE"))return e.modifyBlocks(ot,n)}for(i=tt(e,r,n.startContainer,n.startOffset),Ye(r),He(r),_(r,a);i.nodeType===P;){var s,d=i.firstChild;if("A"===i.nodeName&&(!i.textContent||i.textContent===Z)){d=e._doc.createTextNode(""),C(i,d),i=d;break}for(;d&&d.nodeType===I&&!d.data&&(s=d.nextSibling,s&&"BR"!==s.nodeName);)v(d),d=s;if(!d||"BR"===d.nodeName||d.nodeType===I&&!X)break;i=d}n=e._createRange(i,0),e.setSelection(n),e._updatePath(n,!0)},backspace:function(e,t,n){var r=e._root;if(e._removeZWS(),e.saveUndoState(n),n.collapsed)if(Te(n,r)){t.preventDefault();var o,i=Se(n,r);if(!i)return;if(y(i.parentNode,r),o=l(i,r)){if(!o.isContentEditable)return void v(o);for(E(o,i,n),i=o.parentNode;i!==r&&!i.nextSibling;)i=i.parentNode;i!==r&&(i=i.nextSibling)&&x(i,r),e.setSelection(n)}else if(i){if(u(i,r,"UL")||u(i,r,"OL"))return e.modifyBlocks(ct,n);if(u(i,r,"BLOCKQUOTE"))return e.modifyBlocks(rt,n);e.setSelection(n),e._updatePath(n,!0)}}else e.setSelection(n),setTimeout(function(){Le(e)},0);else t.preventDefault(),ge(n,r),Le(e,n)},"delete":function(e,t,n){var r,o,i,a,s,d,l=e._root;if(e._removeZWS(),e.saveUndoState(n),n.collapsed)if(be(n,l)){if(t.preventDefault(),r=Se(n,l),!r)return;if(y(r.parentNode,l),o=c(r,l)){if(!o.isContentEditable)return void v(o);for(E(r,o,n),o=r.parentNode;o!==l&&!o.nextSibling;)o=o.parentNode;o!==l&&(o=o.nextSibling)&&x(o,l),e.setSelection(n),e._updatePath(n,!0)}}else{if(i=n.cloneRange(),Ne(n,e._root),a=n.endContainer,s=n.endOffset,a.nodeType===P&&(d=a.childNodes[s],d&&"IMG"===d.nodeName))return t.preventDefault(),v(d),Ce(n),void Le(e,n);e.setSelection(i),setTimeout(function(){Le(e)},0)}else t.preventDefault(),ge(n,l),Le(e,n)},tab:function(e,t,n){var r,o,i=e._root;if(e._removeZWS(),n.collapsed&&Te(n,i))for(r=Se(n,i);o=r.parentNode;){if("UL"===o.nodeName||"OL"===o.nodeName){r.previousSibling&&(t.preventDefault(),e.modifyBlocks(lt,n));break}r=o}},"shift-tab":function(e,t,n){var r,o=e._root;e._removeZWS(),n.collapsed&&Te(n,o)&&(r=n.startContainer,(u(r,o,"UL")||u(r,o,"OL"))&&(t.preventDefault(),e.modifyBlocks(ct,n)))},space:function(e,t,n){var r,o;e._recordUndoState(n),ht(n.startContainer),e._getRangeAndRemoveBookmark(n),r=n.endContainer,o=r.parentNode,n.collapsed&&"A"===o.nodeName&&!r.nextSibling&&n.endOffset===m(r)&&n.setStartAfter(o),e.setSelection(n)},left:function(e){e._removeZWS()},right:function(e){e._removeZWS()}};Q&&$&&(Ae["meta-left"]=function(e,t){t.preventDefault();var n=$e(e);n&&n.modify&&n.modify("move","backward","lineboundary")},Ae["meta-right"]=function(e,t){t.preventDefault();var n=$e(e);n&&n.modify&&n.modify("move","forward","lineboundary")}),Q||(Ae.pageup=function(e){e.moveCursorToStart()},Ae.pagedown=function(e){e.moveCursorToEnd()}),Ae[te+"b"]=Be("B"),Ae[te+"i"]=Be("I"),Ae[te+"u"]=Be("U"),Ae[te+"shift-7"]=Be("S"),Ae[te+"shift-5"]=Be("SUB",{tag:"SUP"}),Ae[te+"shift-6"]=Be("SUP",{tag:"SUB"}),Ae[te+"shift-8"]=Oe("makeUnorderedList"),Ae[te+"shift-9"]=Oe("makeOrderedList"),Ae[te+"["]=Oe("decreaseQuoteLevel"),Ae[te+"]"]=Oe("increaseQuoteLevel"),Ae[te+"y"]=Oe("redo"),Ae[te+"z"]=Oe("undo"),Ae[te+"shift-z"]=Oe("redo");var De={1:10,2:13,3:16,4:18,5:24,6:32,7:48},Re={backgroundColor:{regexp:ae,replace:function(e,t){return S(e,"SPAN",{"class":"highlight",style:"background-color:"+t})}},color:{regexp:ae,replace:function(e,t){return S(e,"SPAN",{"class":"colour",style:"color:"+t})}},fontWeight:{regexp:/^bold/i,replace:function(e){return S(e,"B")}},fontStyle:{regexp:/^italic/i,replace:function(e){return S(e,"I")}},fontFamily:{regexp:ae,replace:function(e,t){return S(e,"SPAN",{"class":"font",style:"font-family:"+t})}},fontSize:{regexp:ae,replace:function(e,t){return S(e,"SPAN",{"class":"size",style:"font-size:"+t})}}},Ue=function(e){return function(t,n){var r=S(t.ownerDocument,e);return n.replaceChild(r,t),r.appendChild(N(t)),r}},Pe={SPAN:function(e,t){var n,r,o,i,a,s,d=e.style,l=e.ownerDocument;for(n in Re)r=Re[n],o=d[n],o&&r.regexp.test(o)&&(s=r.replace(l,o),i&&i.appendChild(s),i=s,a||(a=s));return a&&(i.appendChild(N(e)),t.replaceChild(a,e)),i||e},STRONG:Ue("B"),EM:Ue("I"),STRIKE:Ue("S"),FONT:function(e,t){var n,r,o,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&&(r=S(c,"SPAN",{"class":"size",style:"font-size:"+De[d]+"px"}),a||(a=r),i&&i.appendChild(r),i=r),l&&/^#?([\dA-F]{3}){1,2}$/i.test(l)&&("#"!==l.charAt(0)&&(l="#"+l),o=S(c,"SPAN",{"class":"colour",style:"color:"+l}),a||(a=o),i&&i.appendChild(o),i=o),a||(a=i=S(c,"SPAN")),t.replaceChild(a,e),i.appendChild(N(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(N(e)),n}},Ie=/^(?: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)|UL)$/,we=/^(?:HEAD|META|STYLE)/,Fe=new n(null,H|M,function(){return!0}),Me=function pt(e,t){var n,r,o,a,s,d,l,c,f,h,u,p,g=e.childNodes;for(n=e;i(n);)n=n.parentNode;for(Fe.root=n,r=0,o=g.length;o>r;r+=1)if(a=g[r],s=a.nodeName,d=a.nodeType,l=Pe[s],d===P){if(c=a.childNodes.length,l)a=l(a,e);else{if(we.test(s)){e.removeChild(a),r-=1,o-=1;continue}if(!Ie.test(s)&&!i(a)){r-=1,o+=c-1,e.replaceChild(N(a),a);continue}}c&&pt(a,t||"PRE"===s)}else{if(d===I){if(u=a.data,f=!ae.test(u.charAt(0)),h=!ae.test(u.charAt(u.length-1)),t||!f&&!h)continue;if(f){for(Fe.currentNode=a;(p=Fe.previousPONode())&&(s=p.nodeName,!("IMG"===s||"#text"===s&&/\S/.test(p.data)));)if(!i(p)){p=null;break}u=u.replace(/^\s+/g,p?" ":"")}if(h){for(Fe.currentNode=a;(p=Fe.nextNode())&&!("IMG"===s||"#text"===s&&/\S/.test(p.data));)if(!i(p)){p=null;break}u=u.replace(/\s+$/g,p?" ":"")}if(u){a.data=u;continue}}e.removeChild(a),r-=1,o-=1}return e},He=function gt(e){for(var t,n=e.childNodes,r=n.length;r--;)t=n[r],t.nodeType!==P||o(t)?t.nodeType!==I||t.data||e.removeChild(t):(gt(t),i(t)&&!t.firstChild&&e.removeChild(t))},We=function(e){return e.nodeType===P?"BR"===e.nodeName:ae.test(e.data)},ze=function(e){for(var t,r=e.parentNode;i(r);)r=r.parentNode;return t=new n(r,M|H,We),t.currentNode=e,!!t.nextNode()},qe=function(e,t){var n,r,o,a=e.querySelectorAll("BR"),s=[],d=a.length;for(n=0;d>n;n+=1)s[n]=ze(a[n]);for(;d--;)r=a[d],o=r.parentNode,o&&(s[d]?i(o)||y(o,t):v(r))},Ke=function(e){var t=e.clipboardData,n=this.getSelection(),r=this.createElement("div"),o=this._root,i=this;this.saveUndoState(n),J||j||!t?setTimeout(function(){try{i._ensureBottomLine()}catch(e){i.didError(e)}},0):(Ne(n,o),r.appendChild(ge(n,o)),t.setData("text/html",r.innerHTML),t.setData("text/plain",r.innerText||r.textContent),e.preventDefault()),this.setSelection(n)},Ze=function(e){var t=e.clipboardData,n=this.getSelection(),r=this.createElement("div");J||j||!t||(r.appendChild(n.cloneContents()),t.setData("text/html",r.innerHTML),t.setData("text/plain",r.innerText||r.textContent),e.preventDefault())},Ge=function(e){var t,n,r,o,i,a=e.clipboardData,s=a&&a.items,d=!1,l=!1,c=null,f=this;if(!J&&s){for(e.preventDefault(),t=s.length;t--;){if(n=s[t],r=n.type,"text/html"===r)return void n.getAsString(function(e){f.insertHTML(e,!0)});"text/plain"===r&&(c=n),/^image\/.*/.test(r)&&(l=!0)}return void(l?(this.fireEvent("dragover",{dataTransfer:a,preventDefault:function(){d=!0}}),d&&this.fireEvent("drop",{dataTransfer:a})):c&&n.getAsString(function(e){f.insertPlainText(e,!0)}))}if(o=a&&a.types,!J&&o&&(se.call(o,"text/html")>-1||!$&&se.call(o,"text/plain")>-1&&se.call(o,"text/rtf")<0))return e.preventDefault(),void((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 h=this._doc.body,u=this.getSelection(),p=u.startContainer,g=u.startOffset,m=u.endContainer,C=u.endOffset,N=this.createElement("DIV",{contenteditable:"true",style:"position:fixed; overflow:hidden; top:0; right:100%; width:1px; height:1px;"});h.appendChild(N),u.selectNodeContents(N),this.setSelection(u),setTimeout(function(){try{f._awaitingPaste=!1;for(var e,t,n="",r=N;N=r;)r=N.nextSibling,v(N),e=N.firstChild,e&&e===N.lastChild&&"DIV"===e.nodeName&&(N=e),n+=N.innerHTML;t=f._createRange(p,g,m,C),f.setSelection(t),n&&f.insertHTML(n,!0)}catch(o){f.didError(o)}},0)},Ve=[],je=B.prototype;je.setConfig=function(e){return e=O({blockTag:"DIV",blockAttributes:null,tagAttributes:{blockquote:null,ul:null,ol:null,li:null}},e),e.blockTag=e.blockTag.toUpperCase(),this._config=e,this},je.createElement=function(e,t,n){return S(this._doc,e,t,n)},je.createDefaultBlock=function(e){var t=this._config;return _(this.createElement(t.blockTag,t.blockAttributes,e),this._root)},je.didError=function(e){console.log(e)},je.getDocument=function(){return this._doc},je.getRoot=function(){return this._root},je.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})};var Qe={pathChange:1,select:1,input:1,undoStateChange:1,dragover:1,drop:1};je.fireEvent=function(e,t){var n,r,o=this._events[e];if(o)for(t||(t={}),t.type!==e&&(t.type=e),o=o.slice(),n=o.length;n--;){r=o[n];try{r.handleEvent?r.handleEvent(t):r.call(this,t)}catch(i){i.details="Squire: fireEvent error. Event type: "+e,this.didError(i)}}return this},je.destroy=function(){var e,t=this._root,n=this._events;for(e in n)Qe[e]||t.removeEventListener(e,this,!0);this._mutation&&this._mutation.disconnect();for(var r=Ve.length;r--;)Ve[r]===this&&Ve.splice(r,1)},je.handleEvent=function(e){this.fireEvent(e.type,e)},je.addEventListener=function(e,t){var n=this._events[e];return t?(n||(n=this._events[e]=[],Qe[e]||this._root.addEventListener(e,this,!0)),n.push(t),this):(this.didError({name:"Squire: addEventListener with null or undefined fn",message:"Event type: "+e}),this)},je.removeEventListener=function(e,t){var n,r=this._events[e];if(r){for(n=r.length;n--;)r[n]===t&&r.splice(n,1);r.length||(delete this._events[e],Qe[e]||this._root.removeEventListener(e,this,!0))}return this},je._createRange=function(e,t,n,r){if(e instanceof this._win.Range)return e.cloneRange();var o=this._doc.createRange();return o.setStart(e,t),n?o.setEnd(n,r):o.setEnd(e,t),o},je.getCursorPosition=function(e){if(!e&&!(e=this.getSelection())||!e.getBoundingClientRect)return null;var t,n,r=e.getBoundingClientRect();return r&&!r.top&&(this._ignoreChange=!0,t=this._doc.createElement("SPAN"),t.textContent=Z,ue(e,t),r=t.getBoundingClientRect(),n=t.parentNode,n.removeChild(t),b(n,{startContainer:e.startContainer,endContainer:e.endContainer,startOffset:e.startOffset,endOffset:e.endOffset})),r},je._moveCursorTo=function(e){var t=this._root,n=this._createRange(t,e?0:t.childNodes.length);return Ce(n),this.setSelection(n),this},je.moveCursorToStart=function(){return this._moveCursorTo(!0)},je.moveCursorToEnd=function(){return this._moveCursorTo(!1)};var $e=function(e){return e._win.getSelection()||null};je.setSelection=function(e){if(e){this._restoreSelection=!1,this._lastSelection=e,j&&this._win.focus();var t=$e(this);t&&(t.removeAllRanges(),t.addRange(e))}return this},je.getSelection=function(){var e,t,n,r=$e(this),i=this._root;return r&&r.rangeCount&&(e=r.getRangeAt(0).cloneRange(),t=e.startContainer,n=e.endContainer,t&&o(t)&&e.setStartBefore(t),n&&o(n)&&e.setEndBefore(n)),e&&p(i,e.commonAncestorContainer)?this._lastSelection=e:e=this._lastSelection,e||(e=this._createRange(i.firstChild,0)),e},je.getSelectedText=function(){var e,t=this.getSelection(),r=new n(t.commonAncestorContainer,H|M,function(e){return ve(t,e,!0)}),o=t.startContainer,a=t.endContainer,s=r.currentNode=o,d="",l=!1;for(r.filter(s)||(s=r.nextNode());s;)s.nodeType===I?(e=s.data,e&&/\S/.test(e)&&(s===a&&(e=e.slice(0,t.endOffset)),s===o&&(e=e.slice(t.startOffset)),d+=e,l=!0)):("BR"===s.nodeName||l&&!i(s))&&(d+="\n",l=!1),s=r.nextNode();return d},je.getPath=function(){return this._path};var Ye=function(e){for(var t,r,o,a=new n(e,H,function(){return!0},!1);r=a.nextNode();)for(;(o=r.data.indexOf(Z))>-1;){if(1===r.length){do t=r.parentNode,t.removeChild(r),r=t,a.currentNode=t;while(i(r)&&!m(r));break}r.deleteData(o,1)}};je._didAddZWS=function(){this._hasZWS=!0},je._removeZWS=function(){this._hasZWS&&(Ye(this._root),this._hasZWS=!1)},je._updatePath=function(e,t){var n,r=e.startContainer,o=e.endContainer;(t||r!==this._lastAnchorNode||o!==this._lastFocusNode)&&(this._lastAnchorNode=r,this._lastFocusNode=o,n=r&&o?r===o?g(o,this._root):"(selection)":"",this._path!==n&&(this._path=n,this.fireEvent("pathChange",{path:n}))),e.collapsed||this.fireEvent("select")},je._updatePathOnEvent=function(){this._updatePath(this.getSelection())},je.focus=function(){return this._root.focus(),this},je.blur=function(){return this._root.blur(),this};var Xe="squire-selection-start",Je="squire-selection-end";je._saveRangeToBookmark=function(e){var t,n=this.createElement("INPUT",{id:Xe,type:"hidden"}),r=this.createElement("INPUT",{id:Je,type:"hidden"});ue(e,n),e.collapse(!1),ue(e,r),n.compareDocumentPosition(r)&U&&(n.id=Je,r.id=Xe,t=n,n=r,r=t),e.setStartAfter(n),e.setEndBefore(r)},je._getRangeAndRemoveBookmark=function(e){var t=this._root,n=t.querySelector("#"+Xe),r=t.querySelector("#"+Je);if(n&&r){var o,i=n.parentNode,a=r.parentNode,s={startContainer:i,endContainer:a,startOffset:se.call(i.childNodes,n),endOffset:se.call(a.childNodes,r)};i===a&&(s.endOffset-=1),v(n),v(r),b(i,s),i!==a&&b(a,s),e||(e=this._doc.createRange()),e.setStart(s.startContainer,s.startOffset),e.setEnd(s.endContainer,s.endOffset),o=e.collapsed,o&&(i=e.startContainer,i.nodeType===I&&(a=i.childNodes[e.startOffset],a&&a.nodeType===I||(a=i.childNodes[e.startOffset-1]),a&&a.nodeType===I&&(e.setStart(a,0),e.collapse(!0))))}return e||null},je._keyUpDetectChange=function(e){var t=e.keyCode;e.ctrlKey||e.metaKey||e.altKey||!(16>t||t>20)||!(33>t||t>45)||this._docWasChanged()},je._docWasChanged=function(){if(!this._ignoreAllChanges){if(ie&&this._ignoreChange)return void(this._ignoreChange=!1);this._isInUndoState&&(this._isInUndoState=!1,this.fireEvent("undoStateChange",{canUndo:!0,canRedo:!1})),this.fireEvent("input")}},je._recordUndoState=function(e){if(!this._isInUndoState){var t=this._undoIndex+=1,n=this._undoStack;te+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},je.hasFormat=function(e,t,r){if(e=e.toUpperCase(),t||(t={}),!r&&!(r=this.getSelection()))return!1;!r.collapsed&&r.startContainer.nodeType===I&&r.startOffset===r.startContainer.length&&r.startContainer.nextSibling&&r.setStartBefore(r.startContainer.nextSibling),!r.collapsed&&r.endContainer.nodeType===I&&0===r.endOffset&&r.endContainer.previousSibling&&r.setEndAfter(r.endContainer.previousSibling);var o,i,a=this._root,s=r.commonAncestorContainer;if(u(s,a,e,t))return!0;if(s.nodeType===I)return!1;o=new n(s,H,function(e){return ve(r,e,!0)},!1);for(var d=!1;i=o.nextNode();){if(!u(i,a,e,t))return!1;d=!0}return d},je.getFontInfo=function(e){var n,r,o,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===I)for(n.nodeType===I&&(n=n.parentNode);4>a&&n;)(r=n.style)&&(!i.color&&(o=r.color)&&(i.color=o,a+=1),!i.backgroundColor&&(o=r.backgroundColor)&&(i.backgroundColor=o,a+=1),!i.family&&(o=r.fontFamily)&&(i.family=o,a+=1),!i.size&&(o=r.fontSize)&&(i.size=o,a+=1)),n=n.parentNode;return i},je._addFormat=function(e,t,r){var o,i,a,s,d,l,c,f,h=this._root;if(r.collapsed)o=_(this.createElement(e,t),h),ue(r,o),r.setStart(o.firstChild,o.firstChild.length),r.collapse(!0);else{if(i=new n(r.commonAncestorContainer,H|M,function(e){return(e.nodeType===I||"BR"===e.nodeName||"IMG"===e.nodeName)&&ve(r,e,!0)},!1),a=r.startContainer,d=r.startOffset,s=r.endContainer,l=r.endOffset,i.currentNode=a,i.filter(a)||(a=i.nextNode(),d=0),!a)return r;do c=i.currentNode,f=!u(c,h,e,t),f&&(c===s&&c.length>l&&c.splitText(l),c===a&&d&&(c=c.splitText(d),s===a&&(s=c,l-=d),a=c,d=0),o=this.createElement(e,t),C(c,o),o.appendChild(c));while(i.nextNode());s.nodeType!==I&&(c.nodeType===I?(s=c,l=c.length):(s=c.parentNode,l=1)),r=this._createRange(a,d,s,l)}return r},je._removeFormat=function(e,t,n,r){this._saveRangeToBookmark(n);var o,a=this._doc;n.collapsed&&(re?(o=a.createTextNode(Z),this._didAddZWS()):o=a.createTextNode(""),ue(n,o));for(var s=n.commonAncestorContainer;i(s);)s=s.parentNode; + +var d=n.startContainer,l=n.startOffset,c=n.endContainer,f=n.endOffset,u=[],p=function(e,t){if(!ve(n,e,!1)){var r,o,i=e.nodeType===I;if(!ve(n,e,!0))return void("INPUT"===e.nodeName||i&&!e.data||u.push([t,e]));if(i)e===c&&f!==e.length&&u.push([t,e.splitText(f)]),e===d&&l&&(e.splitText(l),u.push([t,e]));else for(r=e.firstChild;r;r=o)o=r.nextSibling,p(r,t)}},g=Array.prototype.filter.call(s.getElementsByTagName(e),function(r){return ve(n,r,!0)&&h(r,e,t)});r||g.forEach(function(e){p(e,e)}),u.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),o&&n.collapse(!1);var m={startContainer:n.startContainer,startOffset:n.startOffset,endContainer:n.endContainer,endOffset:n.endOffset};return b(s,m),n.setStart(m.startContainer,m.startOffset),n.setEnd(m.endContainer,m.endOffset),n},je.changeFormat=function(e,t,n,r){return n||(n=this.getSelection())?(this.saveUndoState(n),t&&(n=this._removeFormat(t.tag.toUpperCase(),t.attributes||{},n,r)),e&&(n=this._addFormat(e.tag.toUpperCase(),e.attributes||{},n)),this.setSelection(n),this._updatePath(n,!0),ie||this._docWasChanged(),this):void 0};var et={DT:"DD",DD:"DT",LI:"LI"},tt=function(e,t,n,r){var o=et[t.nodeName],i=null,a=T(n,r,t.parentNode,e._root),s=e._config;return o||(o=s.blockTag,i=s.blockAttributes),h(a,o,i)||(t=S(a.ownerDocument,o,i),a.dir&&(t.dir=a.dir),C(a,t),t.appendChild(N(a)),a=t),a};je.forEachBlock=function(e,t,n){if(!n&&!(n=this.getSelection()))return this;t&&this.saveUndoState(n);var r=this._root,o=Se(n,r),i=_e(n,r);if(o&&i)do if(e(o)||o===i)break;while(o=c(o,r));return t&&(this.setSelection(n),this._updatePath(n,!0),ie||this._docWasChanged()),this},je.modifyBlocks=function(e,t){if(!t&&!(t=this.getSelection()))return this;this._isInUndoState?this._saveRangeToBookmark(t):this._recordUndoState(t);var n,r=this._root;return Ee(t,r),Ne(t,r),n=pe(t,r,r),ue(t,e.call(this,n)),t.endOffsett;t+=1){for(o=d[t],i=N(o),a=i.childNodes,r=a.length;r--;)s=a[r],C(s,N(s));y(i,this._root),C(o,i)}return e},lt=function(e){var t,n,r,o,i,a,d=e.querySelectorAll("LI"),l=this._config.tagAttributes,c=l.li;for(t=0,n=d.length;n>t;t+=1)r=d[t],s(r.firstChild)||(o=r.parentNode.nodeName,i=r.previousSibling,i&&(i=i.lastChild)&&i.nodeName===o||(a=l[o.toLowerCase()],C(r,this.createElement("LI",c,[i=this.createElement(o,a)]))),i.appendChild(r));return e},ct=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 r,o=n.parentNode,i=o.parentNode,a=n.firstChild,d=a;for(n.previousSibling&&(o=T(o,n,i,t));d&&(r=d.nextSibling,!s(d));)i.insertBefore(d,o),d=r;for("LI"===i.nodeName&&a.previousSibling&&T(i,a,i.parentNode,t);n!==e&&!n.childNodes.length;)o=n.parentNode,o.removeChild(n),n=o},this),y(e,t),e};je._ensureBottomLine=function(){var e=this._root,t=e.lastElementChild;t&&t.nodeName===this._config.blockTag&&a(t)||e.appendChild(this.createDefaultBlock())},je.setKeyHandler=function(e,t){return this._keyHandlers[e]=t,this},je._getHTML=function(){return this._root.innerHTML},je._setHTML=function(e){var t=this._root,n=t;n.innerHTML=e;do _(n,t);while(n=c(n,t));this._ignoreChange=!0},je.getHTML=function(e){var t,n,r,o,i,a,s=[];if(e&&(a=this.getSelection())&&this._saveRangeToBookmark(a),ne)for(t=this._root,n=t;n=c(n,t);)n.textContent||n.querySelector("BR")||(r=this.createElement("BR"),n.appendChild(r),s.push(r));if(o=this._getHTML().replace(/\u200B/g,""),ne)for(i=s.length;i--;)v(s[i]);return a&&this._getRangeAndRemoveBookmark(a),o},je.setHTML=function(e){var t,n=this._doc.createDocumentFragment(),r=this.createElement("DIV"),o=this._root;r.innerHTML=e,n.appendChild(N(r)),Me(n),qe(n,o),y(n,o);for(var i=n;i=c(i,o);)_(i,o);for(this._ignoreChange=!0;t=o.lastChild;)o.removeChild(t);o.appendChild(n),_(o,o),this._undoIndex=-1,this._undoStack.length=0,this._undoStackLength=0,this._isInUndoState=!1;var a=this._getRangeAndRemoveBookmark()||this._createRange(o.firstChild,0);return this.saveUndoState(a),this._lastSelection=a,this._updatePath(a,!0),this},je.insertElement=function(e,t){if(t||(t=this.getSelection()),t.collapse(!0),i(e))ue(t,e),t.setStartAfter(e);else{for(var n,r,o=this._root,a=Se(t,o)||o;a!==o&&!a.nextSibling;)a=a.parentNode;a!==o&&(n=a.parentNode,r=T(n,a.nextSibling,o,o)),r?o.insertBefore(e,r):(o.appendChild(e),r=this.createDefaultBlock(),o.appendChild(r)),t.setStart(r,0),t.setEnd(r,0),Ce(t)}return this.focus(),this.setSelection(t),this._updatePath(t),this},je.insertImage=function(e,t){var n=this.createElement("IMG",O({src:e},t));return this.insertElement(n),n};var ft=/\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,ht=function(e,t){for(var r,o,i,a,s,d,l,c=e.ownerDocument,f=new n(e,H,function(e){return!u(e,t,"A")},!1);r=f.nextNode();)for(o=r.data,i=r.parentNode;a=ft.exec(o);)s=a.index,d=s+a[0].length,s&&(l=c.createTextNode(o.slice(0,s)),i.insertBefore(l,r)),l=c.createElement("A"),l.textContent=o.slice(s,d),l.href=a[1]?/^(?:ht|f)tps?:/.test(a[1])?a[1]:"http://"+a[1]:"mailto:"+a[2],i.insertBefore(l,r),r.data=o=o.slice(d)};je.insertHTML=function(e,t){var n=this.getSelection(),r=this._doc.createDocumentFragment(),o=this.createElement("DIV");o.innerHTML=e,r.appendChild(N(o)),this.saveUndoState(n);try{var i=this._root,a=r,s={fragment:r,preventDefault:function(){this.defaultPrevented=!0},defaultPrevented:!1};for(ht(r,i),Me(r),qe(r,i),He(r),r.normalize();a=c(a,i);)_(a,i);t&&this.fireEvent("willPaste",s),s.defaultPrevented||(me(n,s.fragment,i),ie||this._docWasChanged(),n.collapse(!1),this._ensureBottomLine()),this.setSelection(n),this._updatePath(n,!0)}catch(d){this.didError(d)}return this},je.insertPlainText=function(e,t){var n,r,o,i=e.split("\n");for(n=0,r=i.length;r>n;n+=1)o=i[n],o=o.split("&").join("&").split("<").join("<").split(">").join(">").replace(/ (?= )/g," "),n&&r>n+1&&(o="
"+(o||"
")+"
"),i[n]=o;return this.insertHTML(i.join(""),t)};var ut=function(e,t,n){return function(){return this[e](t,n),this.focus()}};je.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},je.bold=ut("changeFormat",{tag:"B"}),je.italic=ut("changeFormat",{tag:"I"}),je.underline=ut("changeFormat",{tag:"U"}),je.strikethrough=ut("changeFormat",{tag:"S"}),je.subscript=ut("changeFormat",{tag:"SUB"},{tag:"SUP"}),je.superscript=ut("changeFormat",{tag:"SUP"},{tag:"SUB"}),je.removeBold=ut("changeFormat",null,{tag:"B"}),je.removeItalic=ut("changeFormat",null,{tag:"I"}),je.removeUnderline=ut("changeFormat",null,{tag:"U"}),je.removeStrikethrough=ut("changeFormat",null,{tag:"S"}),je.removeSubscript=ut("changeFormat",null,{tag:"SUB"}),je.removeSuperscript=ut("changeFormat",null,{tag:"SUP"}),je.makeLink=function(e,t){var n=this.getSelection();if(n.collapsed){var r=e.indexOf(":")+1;if(r)for(;"/"===e[r];)r+=1;ue(n,this._doc.createTextNode(e.slice(r)))}return t||(t={}),t.href=e,this.changeFormat({tag:"A",attributes:t},{tag:"A"},n),this.focus()},je.removeLink=function(){return this.changeFormat(null,{tag:"A"},this.getSelection(),!0),this.focus()},je.setFontFace=function(e){return this.changeFormat({tag:"SPAN",attributes:{"class":"font",style:"font-family: "+e+", sans-serif;"}},{tag:"SPAN",attributes:{"class":"font"}}),this.focus()},je.setFontSize=function(e){return this.changeFormat({tag:"SPAN",attributes:{"class":"size",style:"font-size: "+("number"==typeof e?e+"px":e)}},{tag:"SPAN",attributes:{"class":"size"}}),this.focus()},je.setTextColour=function(e){return this.changeFormat({tag:"SPAN",attributes:{"class":"colour",style:"color:"+e}},{tag:"SPAN",attributes:{"class":"colour"}}),this.focus()},je.setHighlightColour=function(e){return this.changeFormat({tag:"SPAN",attributes:{"class":"highlight",style:"background-color:"+e}},{tag:"SPAN",attributes:{"class":"highlight"}}),this.focus()},je.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()},je.setTextDirection=function(e){return this.forEachBlock(function(t){t.dir=e},!0),this.focus()},je.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||(Ee(e,t),n=t),n.nodeType===I)return this;this.saveUndoState(e),Ne(e,n);for(var r,o,i,s=n.ownerDocument,d=e.startContainer,l=e.startOffset,c=e.endContainer,f=e.endOffset,h=s.createDocumentFragment(),u=s.createDocumentFragment(),p=T(c,f,n,t),g=T(d,l,n,t);g!==p;)r=g.nextSibling,h.appendChild(g),g=r;return R(this,h,u),u.normalize(),g=u.firstChild,r=u.lastChild,i=n.childNodes,g?(n.insertBefore(u,p),l=se.call(i,g),f=se.call(i,r)+1):(l=se.call(i,p),f=l),o={startContainer:n,startOffset:l,endContainer:n,endOffset:f},b(n,o),e.setStart(o.startContainer,o.startOffset),e.setEnd(o.endContainer,o.endOffset),Ce(e),this.setSelection(e),this._updatePath(e,!0),this.focus()},je.increaseQuoteLevel=ut("modifyBlocks",nt),je.decreaseQuoteLevel=ut("modifyBlocks",rt),je.makeUnorderedList=ut("modifyBlocks",at),je.makeOrderedList=ut("modifyBlocks",st),je.removeList=ut("modifyBlocks",dt),je.increaseListLevel=ut("modifyBlocks",lt),je.decreaseListLevel=ut("modifyBlocks",ct),"object"==typeof exports?module.exports=B:"function"==typeof define&&define.amd?define(function(){return B}):(G.Squire=B,top!==G&&"true"===e.documentElement.getAttribute("data-squireinit")&&(G.editor=new B(e),G.onEditorLoad&&(G.onEditorLoad(G.editor),G.onEditorLoad=null)))}(document); \ No newline at end of file diff --git a/source/Editor.js b/source/Editor.js index 48f5043..4c96573 100644 --- a/source/Editor.js +++ b/source/Editor.js @@ -64,6 +64,7 @@ function Squire ( root, config ) { this._undoStackLength = 0; this._isInUndoState = false; this._ignoreChange = false; + this._ignoreAllChanges = false; if ( canObserveMutations ) { mutation = new MutationObserver( this._docWasChanged.bind( this ) ); @@ -194,6 +195,25 @@ proto.getRoot = function () { return this._root; }; +proto.modifyDocument = function(modificationCallback) { + this._ignoreAllChanges = true; + if(this._mutation) { + this._mutation.disconnect(); + } + + modificationCallback(); + + this._ignoreAllChanges = false; + if(this._mutation) { + this._mutation.observe( this._root, { + childList: true, + attributes: true, + characterData: true, + subtree: true + }); + } +}; + // --- Events --- // Subscribing to these events won't automatically add a listener to the @@ -649,6 +669,10 @@ proto._keyUpDetectChange = function ( event ) { }; proto._docWasChanged = function () { + if(this._ignoreAllChanges) { + return; + } + if ( canObserveMutations && this._ignoreChange ) { this._ignoreChange = false; return;