//>>built
define("dijit/_editor/RichText",["dojo/_base/array","dojo/_base/config","dojo/_base/declare","dojo/_base/Deferred","dojo/dom","dojo/dom-attr","dojo/dom-class","dojo/dom-construct","dojo/dom-geometry","dojo/dom-style","dojo/_base/event","dojo/_base/kernel","dojo/keys","dojo/_base/lang","dojo/on","dojo/query","dojo/ready","dojo/sniff","dojo/topic","dojo/_base/unload","dojo/_base/url","dojo/_base/window","../_Widget","../_CssStateMixin","./selection","./range","./html","../focus","../main"],function(_1,_2,_3,_4,_5,_6,_7,_8,_9,_a,_b,_c,_d,_e,on,_f,_10,has,_11,_12,_13,win,_14,_15,_16,_17,_18,_19,_1a){
var _1b=_3("dijit._editor.RichText",[_14,_15],{constructor:function(_1c){
this.contentPreFilters=[];
this.contentPostFilters=[];
this.contentDomPreFilters=[];
this.contentDomPostFilters=[];
this.editingAreaStyleSheets=[];
this.events=[].concat(this.events);
this._keyHandlers={};
if(_1c&&_e.isString(_1c.value)){
this.value=_1c.value;
}
this.onLoadDeferred=new _4();
},baseClass:"dijitEditor",inheritWidth:false,focusOnLoad:false,name:"",styleSheets:"",height:"300px",minHeight:"1em",isClosed:true,isLoaded:false,_SEPARATOR:"@@**%%__RICHTEXTBOUNDRY__%%**@@",_NAME_CONTENT_SEP:"@@**%%:%%**@@",onLoadDeferred:null,isTabIndent:false,disableSpellCheck:false,postCreate:function(){
if("textarea"===this.domNode.tagName.toLowerCase()){
console.warn("RichText should not be used with the TEXTAREA tag. See dijit._editor.RichText docs.");
}
this.contentPreFilters=[_e.hitch(this,"_preFixUrlAttributes")].concat(this.contentPreFilters);
if(has("mozilla")){
this.contentPreFilters=[this._normalizeFontStyle].concat(this.contentPreFilters);
this.contentPostFilters=[this._removeMozBogus].concat(this.contentPostFilters);
}
if(has("webkit")){
this.contentPreFilters=[this._removeWebkitBogus].concat(this.contentPreFilters);
this.contentPostFilters=[this._removeWebkitBogus].concat(this.contentPostFilters);
}
if(has("ie")){
this.contentPostFilters=[this._normalizeFontStyle].concat(this.contentPostFilters);
this.contentDomPostFilters=[_e.hitch(this,this._stripBreakerNodes)].concat(this.contentDomPostFilters);
}
this.inherited(arguments);
_11.publish(_1a._scopeName+"._editor.RichText::init",this);
this.open();
this.setupDefaultShortcuts();
},setupDefaultShortcuts:function(){
var _1d=_e.hitch(this,function(cmd,arg){
return function(){
return !this.execCommand(cmd,arg);
};
});
var _1e={b:_1d("bold"),i:_1d("italic"),u:_1d("underline"),a:_1d("selectall"),s:function(){
this.save(true);
},m:function(){
this.isTabIndent=!this.isTabIndent;
},"1":_1d("formatblock","h1"),"2":_1d("formatblock","h2"),"3":_1d("formatblock","h3"),"4":_1d("formatblock","h4"),"\\":_1d("insertunorderedlist")};
if(!has("ie")){
_1e.Z=_1d("redo");
}
var key;
for(key in _1e){
this.addKeyHandler(key,true,false,_1e[key]);
}
},events:["onKeyPress","onKeyDown","onKeyUp"],captureEvents:[],_editorCommandsLocalized:false,_localizeEditorCommands:function(){
if(_1b._editorCommandsLocalized){
this._local2NativeFormatNames=_1b._local2NativeFormatNames;
this._native2LocalFormatNames=_1b._native2LocalFormatNames;
return;
}
_1b._editorCommandsLocalized=true;
_1b._local2NativeFormatNames={};
_1b._native2LocalFormatNames={};
this._local2NativeFormatNames=_1b._local2NativeFormatNames;
this._native2LocalFormatNames=_1b._native2LocalFormatNames;
var _1f=["div","p","pre","h1","h2","h3","h4","h5","h6","ol","ul","address"];
var _20="",_21,i=0;
while((_21=_1f[i++])){
if(_21.charAt(1)!=="l"){
_20+="<"+_21+">content"+_21+">
";
}else{
_20+="<"+_21+">
content"+_21+">
";
}
}
var _22={position:"absolute",top:"0px",zIndex:10,opacity:0.01};
var div=_8.create("div",{style:_22,innerHTML:_20});
this.ownerDocumentBody.appendChild(div);
var _23=_e.hitch(this,function(){
var _24=div.firstChild;
while(_24){
try{
this._sCall("selectElement",[_24.firstChild]);
var _25=_24.tagName.toLowerCase();
this._local2NativeFormatNames[_25]=document.queryCommandValue("formatblock");
this._native2LocalFormatNames[this._local2NativeFormatNames[_25]]=_25;
_24=_24.nextSibling.nextSibling;
}
catch(e){
}
}
_8.destroy(div);
});
this.defer(_23);
},open:function(_26){
if(!this.onLoadDeferred||this.onLoadDeferred.fired>=0){
this.onLoadDeferred=new _4();
}
if(!this.isClosed){
this.close();
}
_11.publish(_1a._scopeName+"._editor.RichText::open",this);
if(arguments.length===1&&_26.nodeName){
this.domNode=_26;
}
var dn=this.domNode;
var _27;
if(_e.isString(this.value)){
_27=this.value;
delete this.value;
dn.innerHTML="";
}else{
if(dn.nodeName&&dn.nodeName.toLowerCase()=="textarea"){
var ta=(this.textarea=dn);
this.name=ta.name;
_27=ta.value;
dn=this.domNode=this.ownerDocument.createElement("div");
dn.setAttribute("widgetId",this.id);
ta.removeAttribute("widgetId");
dn.cssText=ta.cssText;
dn.className+=" "+ta.className;
_8.place(dn,ta,"before");
var _28=_e.hitch(this,function(){
_a.set(ta,{display:"block",position:"absolute",top:"-1000px"});
if(has("ie")){
var s=ta.style;
this.__overflow=s.overflow;
s.overflow="hidden";
}
});
if(has("ie")){
this.defer(_28,10);
}else{
_28();
}
if(ta.form){
var _29=ta.value;
this.reset=function(){
var _2a=this.getValue();
if(_2a!==_29){
this.replaceValue(_29);
}
};
on(ta.form,"submit",_e.hitch(this,function(){
_6.set(ta,"disabled",this.disabled);
ta.value=this.getValue();
}));
}
}else{
_27=_18.getChildrenHtml(dn);
dn.innerHTML="";
}
}
this.value=_27;
if(dn.nodeName&&dn.nodeName==="LI"){
dn.innerHTML="
";
}
this.header=dn.ownerDocument.createElement("div");
dn.appendChild(this.header);
this.editingArea=dn.ownerDocument.createElement("div");
dn.appendChild(this.editingArea);
this.footer=dn.ownerDocument.createElement("div");
dn.appendChild(this.footer);
if(!this.name){
this.name=this.id+"_AUTOGEN";
}
if(this.name!==""&&(!_2["useXDomain"]||_2["allowXdRichTextSave"])){
var _2b=_5.byId(_1a._scopeName+"._editor.RichText.value");
if(_2b&&_2b.value!==""){
var _2c=_2b.value.split(this._SEPARATOR),i=0,dat;
while((dat=_2c[i++])){
var _2d=dat.split(this._NAME_CONTENT_SEP);
if(_2d[0]===this.name){
_27=_2d[1];
_2c=_2c.splice(i,1);
_2b.value=_2c.join(this._SEPARATOR);
break;
}
}
}
if(!_1b._globalSaveHandler){
_1b._globalSaveHandler={};
_12.addOnUnload(function(){
var id;
for(id in _1b._globalSaveHandler){
var f=_1b._globalSaveHandler[id];
if(_e.isFunction(f)){
f();
}
}
});
}
_1b._globalSaveHandler[this.id]=_e.hitch(this,"_saveContent");
}
this.isClosed=false;
var ifr=(this.editorObject=this.iframe=this.ownerDocument.createElement("iframe"));
ifr.id=this.id+"_iframe";
ifr.style.border="none";
ifr.style.width="100%";
if(this._layoutMode){
ifr.style.height="100%";
}else{
if(has("ie")>=7){
if(this.height){
ifr.style.height=this.height;
}
if(this.minHeight){
ifr.style.minHeight=this.minHeight;
}
}else{
ifr.style.height=this.height?this.height:this.minHeight;
}
}
ifr.frameBorder=0;
ifr._loadFunc=_e.hitch(this,function(w){
this.window=w;
this.document=this.window.document;
if(has("ie")){
this._localizeEditorCommands();
}
this.onLoad(_27);
});
var src=this._getIframeDocTxt(),s="javascript: '"+src.replace(/\\/g,"\\\\").replace(/'/g,"\\'")+"'";
ifr.setAttribute("src",s);
this.editingArea.appendChild(ifr);
if(has("safari")<=4){
src=ifr.getAttribute("src");
if(!src||src.indexOf("javascript")===-1){
this.defer(function(){
ifr.setAttribute("src",s);
});
}
}
if(dn.nodeName==="LI"){
dn.lastChild.style.marginTop="-1.2em";
}
_7.add(this.domNode,this.baseClass);
},_local2NativeFormatNames:{},_native2LocalFormatNames:{},_getIframeDocTxt:function(){
var _2e=_a.getComputedStyle(this.domNode);
var _2f="";
var _30=true;
if(has("ie")||has("webkit")||(!this.height&&!has("mozilla"))){
_2f="";
_30=false;
}else{
if(has("mozilla")){
this._cursorToStart=true;
_2f=" ";
}
}
var _31=[_2e.fontWeight,_2e.fontSize,_2e.fontFamily].join(" ");
var _32=_2e.lineHeight;
if(_32.indexOf("px")>=0){
_32=parseFloat(_32)/parseFloat(_2e.fontSize);
}else{
if(_32.indexOf("em")>=0){
_32=parseFloat(_32);
}else{
_32="normal";
}
}
var _33="";
var _34=this;
this.style.replace(/(^|;)\s*(line-|font-?)[^;]+/ig,function(_35){
_35=_35.replace(/^;/ig,"")+";";
var s=_35.split(":")[0];
if(s){
s=_e.trim(s);
s=s.toLowerCase();
var i;
var sC="";
for(i=0;i\n\n":"\n\n",(has("mozilla")&&_36.length?""+_36[0].innerHTML+"\n":""),"\n","\n",this._applyEditingAreaStyleSheets(),"\n","\n",_2f,"\n"].join("");
},_applyEditingAreaStyleSheets:function(){
var _37=[];
if(this.styleSheets){
_37=this.styleSheets.split(";");
this.styleSheets="";
}
_37=_37.concat(this.editingAreaStyleSheets);
this.editingAreaStyleSheets=[];
var _38="",i=0,url;
while((url=_37[i++])){
var _39=(new _13(win.global.location,url)).toString();
this.editingAreaStyleSheets.push(_39);
_38+="";
}
return _38;
},addStyleSheet:function(uri){
var url=uri.toString();
if(url.charAt(0)==="."||(url.charAt(0)!=="/"&&!uri.host)){
url=(new _13(win.global.location,url)).toString();
}
if(_1.indexOf(this.editingAreaStyleSheets,url)>-1){
return;
}
this.editingAreaStyleSheets.push(url);
this.onLoadDeferred.then(_e.hitch(this,function(){
if(this.document.createStyleSheet){
this.document.createStyleSheet(url);
}else{
var _3a=this.document.getElementsByTagName("head")[0];
var _3b=this.document.createElement("link");
_3b.rel="stylesheet";
_3b.type="text/css";
_3b.href=url;
_3a.appendChild(_3b);
}
}));
},removeStyleSheet:function(uri){
var url=uri.toString();
if(url.charAt(0)==="."||(url.charAt(0)!=="/"&&!uri.host)){
url=(new _13(win.global.location,url)).toString();
}
var _3c=_1.indexOf(this.editingAreaStyleSheets,url);
if(_3c===-1){
return;
}
delete this.editingAreaStyleSheets[_3c];
_f("link:[href=\""+url+"\"]",this.window.document).orphan();
},disabled:false,_mozSettingProps:{"styleWithCSS":false},_setDisabledAttr:function(_3d){
_3d=!!_3d;
this._set("disabled",_3d);
if(!this.isLoaded){
return;
}
if(has("ie")||has("webkit")||has("opera")){
var _3e=has("ie")&&(this.isLoaded||!this.focusOnLoad);
if(_3e){
this.editNode.unselectable="on";
}
this.editNode.contentEditable=!_3d;
if(_3e){
this.defer(function(){
if(this.editNode){
this.editNode.unselectable="off";
}
});
}
}else{
try{
this.document.designMode=(_3d?"off":"on");
}
catch(e){
return;
}
if(!_3d&&this._mozSettingProps){
var ps=this._mozSettingProps;
var n;
for(n in ps){
if(ps.hasOwnProperty(n)){
try{
this.document.execCommand(n,false,ps[n]);
}
catch(e2){
}
}
}
}
}
this._disabledOK=true;
},onLoad:function(_3f){
if(!this.window.__registeredWindow){
this.window.__registeredWindow=true;
this._iframeRegHandle=_19.registerIframe(this.iframe);
}
if(!has("ie")&&!has("webkit")&&(this.height||has("mozilla"))){
this.editNode=this.document.body;
}else{
this.editNode=this.document.body.firstChild;
var _40=this;
if(has("ie")){
this.tabStop=_8.create("div",{tabIndex:-1},this.editingArea);
this.iframe.onfocus=function(){
_40.editNode.setActive();
};
}
}
this.focusNode=this.editNode;
var _41=this.events.concat(this.captureEvents);
var ap=this.iframe?this.document:this.editNode;
_1.forEach(_41,function(_42){
this.connect(ap,_42.toLowerCase(),_42);
},this);
this.connect(ap,"onmouseup","onClick");
if(has("ie")){
this.connect(this.document,"onmousedown","_onIEMouseDown");
this.editNode.style.zoom=1;
}else{
this.connect(this.document,"onmousedown",function(){
delete this._cursorToStart;
});
}
if(has("webkit")){
this._webkitListener=this.connect(this.document,"onmouseup","onDisplayChanged");
this.connect(this.document,"onmousedown",function(e){
var t=e.target;
if(t&&(t===this.document.body||t===this.document)){
this.defer("placeCursorAtEnd");
}
});
}
if(has("ie")){
try{
this.document.execCommand("RespectVisibilityInDesign",true,null);
}
catch(e){
}
}
this.isLoaded=true;
this.set("disabled",this.disabled);
var _43=_e.hitch(this,function(){
this.setValue(_3f);
if(this.onLoadDeferred){
this.onLoadDeferred.resolve(true);
}
this.onDisplayChanged();
if(this.focusOnLoad){
_10(_e.hitch(this,"defer","focus",this.updateInterval));
}
this.value=this.getValue(true);
});
if(this.setValueDeferred){
this.setValueDeferred.then(_43);
}else{
_43();
}
},onKeyDown:function(e){
if(e.keyCode===_d.TAB&&this.isTabIndent){
_b.stop(e);
if(this.queryCommandEnabled((e.shiftKey?"outdent":"indent"))){
this.execCommand((e.shiftKey?"outdent":"indent"));
}
}
if(has("ie")){
if(e.keyCode==_d.TAB&&!this.isTabIndent){
if(e.shiftKey&&!e.ctrlKey&&!e.altKey){
this.iframe.focus();
}else{
if(!e.shiftKey&&!e.ctrlKey&&!e.altKey){
this.tabStop.focus();
}
}
}else{
if(e.keyCode===_d.BACKSPACE&&this.document.selection.type==="Control"){
_b.stop(e);
this.execCommand("delete");
}else{
if((65<=e.keyCode&&e.keyCode<=90)||(e.keyCode>=37&&e.keyCode<=40)){
e.charCode=e.keyCode;
this.onKeyPress(e);
}
}
}
}
if(has("ff")){
if(e.keyCode===_d.PAGE_UP||e.keyCode===_d.PAGE_DOWN){
if(this.editNode.clientHeight>=this.editNode.scrollHeight){
e.preventDefault();
}
}
}
return true;
},onKeyUp:function(){
},setDisabled:function(_44){
_c.deprecated("dijit.Editor::setDisabled is deprecated","use dijit.Editor::attr(\"disabled\",boolean) instead",2);
this.set("disabled",_44);
},_setValueAttr:function(_45){
this.setValue(_45);
},_setDisableSpellCheckAttr:function(_46){
if(this.document){
_6.set(this.document.body,"spellcheck",!_46);
}else{
this.onLoadDeferred.then(_e.hitch(this,function(){
_6.set(this.document.body,"spellcheck",!_46);
}));
}
this._set("disableSpellCheck",_46);
},onKeyPress:function(e){
var c=(e.keyChar&&e.keyChar.toLowerCase())||e.keyCode,_47=this._keyHandlers[c],_48=arguments;
if(_47&&!e.altKey){
_1.some(_47,function(h){
if(!(h.shift^e.shiftKey)&&!(h.ctrl^(e.ctrlKey||e.metaKey))){
if(!h.handler.apply(this,_48)){
e.preventDefault();
}
return true;
}
},this);
}
if(!this._onKeyHitch){
this._onKeyHitch=_e.hitch(this,"onKeyPressed");
}
this.defer("_onKeyHitch",1);
return true;
},addKeyHandler:function(key,_49,_4a,_4b){
if(!_e.isArray(this._keyHandlers[key])){
this._keyHandlers[key]=[];
}
this._keyHandlers[key].push({shift:_4a||false,ctrl:_49||false,handler:_4b});
},onKeyPressed:function(){
this.onDisplayChanged();
},onClick:function(e){
this.onDisplayChanged(e);
},_onIEMouseDown:function(){
if(!this.focused&&!this.disabled){
this.focus();
}
},_onBlur:function(e){
this.inherited(arguments);
var _4c=this.getValue(true);
if(_4c!==this.value){
this.onChange(_4c);
}
this._set("value",_4c);
},_onFocus:function(e){
if(!this.disabled){
if(!this._disabledOK){
this.set("disabled",false);
}
this.inherited(arguments);
}
},blur:function(){
if(!has("ie")&&this.window.document.documentElement&&this.window.document.documentElement.focus){
this.window.document.documentElement.focus();
}else{
if(this.ownerDocumentBody.focus){
this.ownerDocumentBody.focus();
}
}
},focus:function(){
if(!this.isLoaded){
this.focusOnLoad=true;
return;
}
if(this._cursorToStart){
delete this._cursorToStart;
if(this.editNode.childNodes){
this.placeCursorAtStart();
return;
}
}
if(!has("ie")){
_19.focus(this.iframe);
}else{
if(this.editNode&&this.editNode.focus){
this.iframe.fireEvent("onfocus",document.createEventObject());
}
}
},updateInterval:200,_updateTimer:null,onDisplayChanged:function(){
if(this._updateTimer){
this._updateTimer.remove();
}
this._updateTimer=this.defer("onNormalizedDisplayChanged",this.updateInterval);
},onNormalizedDisplayChanged:function(){
delete this._updateTimer;
},onChange:function(){
},_normalizeCommand:function(cmd,_4d){
var _4e=cmd.toLowerCase();
if(_4e==="formatblock"){
if(has("safari")&&_4d===undefined){
_4e="heading";
}
}else{
if(_4e==="hilitecolor"&&!has("mozilla")){
_4e="backcolor";
}
}
return _4e;
},_qcaCache:{},queryCommandAvailable:function(_4f){
var ca=this._qcaCache[_4f];
if(ca!==undefined){
return ca;
}
return (this._qcaCache[_4f]=this._queryCommandAvailable(_4f));
},_queryCommandAvailable:function(_50){
var ie=1;
var _51=1<<1;
var _52=1<<2;
var _53=1<<3;
function _54(_55){
return {ie:Boolean(_55&ie),mozilla:Boolean(_55&_51),webkit:Boolean(_55&_52),opera:Boolean(_55&_53)};
};
var _56=null;
switch(_50.toLowerCase()){
case "bold":
case "italic":
case "underline":
case "subscript":
case "superscript":
case "fontname":
case "fontsize":
case "forecolor":
case "hilitecolor":
case "justifycenter":
case "justifyfull":
case "justifyleft":
case "justifyright":
case "delete":
case "selectall":
case "toggledir":
_56=_54(_51|ie|_52|_53);
break;
case "createlink":
case "unlink":
case "removeformat":
case "inserthorizontalrule":
case "insertimage":
case "insertorderedlist":
case "insertunorderedlist":
case "indent":
case "outdent":
case "formatblock":
case "inserthtml":
case "undo":
case "redo":
case "strikethrough":
case "tabindent":
_56=_54(_51|ie|_53|_52);
break;
case "blockdirltr":
case "blockdirrtl":
case "dirltr":
case "dirrtl":
case "inlinedirltr":
case "inlinedirrtl":
_56=_54(ie);
break;
case "cut":
case "copy":
case "paste":
_56=_54(ie|_51|_52|_53);
break;
case "inserttable":
_56=_54(_51|ie);
break;
case "insertcell":
case "insertcol":
case "insertrow":
case "deletecells":
case "deletecols":
case "deleterows":
case "mergecells":
case "splitcell":
_56=_54(ie|_51);
break;
default:
return false;
}
return (has("ie")&&_56.ie)||(has("mozilla")&&_56.mozilla)||(has("webkit")&&_56.webkit)||(has("opera")&&_56.opera);
},execCommand:function(_57,_58){
var _59;
this.focus();
_57=this._normalizeCommand(_57,_58);
if(_58!==undefined){
if(_57==="heading"){
throw new Error("unimplemented");
}else{
if((_57==="formatblock")&&has("ie")){
_58="<"+_58+">";
}
}
}
var _5a="_"+_57+"Impl";
if(this[_5a]){
_59=this[_5a](_58);
}else{
_58=arguments.length>1?_58:null;
if(_58||_57!=="createlink"){
_59=this.document.execCommand(_57,false,_58);
}
}
this.onDisplayChanged();
return _59;
},queryCommandEnabled:function(_5b){
if(this.disabled||!this._disabledOK){
return false;
}
_5b=this._normalizeCommand(_5b);
var _5c="_"+_5b+"EnabledImpl";
if(this[_5c]){
return this[_5c](_5b);
}else{
return this._browserQueryCommandEnabled(_5b);
}
},queryCommandState:function(_5d){
if(this.disabled||!this._disabledOK){
return false;
}
_5d=this._normalizeCommand(_5d);
try{
return this.document.queryCommandState(_5d);
}
catch(e){
return false;
}
},queryCommandValue:function(_5e){
if(this.disabled||!this._disabledOK){
return false;
}
var r;
_5e=this._normalizeCommand(_5e);
if(has("ie")&&_5e==="formatblock"){
r=this._native2LocalFormatNames[this.document.queryCommandValue(_5e)];
}else{
if(has("mozilla")&&_5e==="hilitecolor"){
var _5f;
try{
_5f=this.document.queryCommandValue("styleWithCSS");
}
catch(e){
_5f=false;
}
this.document.execCommand("styleWithCSS",false,true);
r=this.document.queryCommandValue(_5e);
this.document.execCommand("styleWithCSS",false,_5f);
}else{
r=this.document.queryCommandValue(_5e);
}
}
return r;
},_sCall:function(_60,_61){
return win.withGlobal(this.window,_60,_16,_61);
},placeCursorAtStart:function(){
this.focus();
var _62=false;
if(has("mozilla")){
var _63=this.editNode.firstChild;
while(_63){
if(_63.nodeType===3){
if(_63.nodeValue.replace(/^\s+|\s+$/g,"").length>0){
_62=true;
this._sCall("selectElement",[_63]);
break;
}
}else{
if(_63.nodeType===1){
_62=true;
var tg=_63.tagName?_63.tagName.toLowerCase():"";
if(/br|input|img|base|meta|area|basefont|hr|link/.test(tg)){
this._sCall("selectElement",[_63]);
}else{
this._sCall("selectElementChildren",[_63]);
}
break;
}
}
_63=_63.nextSibling;
}
}else{
_62=true;
this._sCall("selectElementChildren",[this.editNode]);
}
if(_62){
this._sCall("collapse",[true]);
}
},placeCursorAtEnd:function(){
this.focus();
var _64=false;
if(has("mozilla")){
var _65=this.editNode.lastChild;
while(_65){
if(_65.nodeType===3){
if(_65.nodeValue.replace(/^\s+|\s+$/g,"").length>0){
_64=true;
this._sCall("selectElement",[_65]);
break;
}
}else{
if(_65.nodeType===1){
_64=true;
this._sCall("selectElement",[_65.lastChild||_65]);
break;
}
}
_65=_65.previousSibling;
}
}else{
_64=true;
this._sCall("selectElementChildren",[this.editNode]);
}
if(_64){
this._sCall("collapse",[false]);
}
},getValue:function(_66){
if(this.textarea){
if(this.isClosed||!this.isLoaded){
return this.textarea.value;
}
}
return this._postFilterContent(null,_66);
},_getValueAttr:function(){
return this.getValue(true);
},setValue:function(_67){
if(!this.isLoaded){
this.onLoadDeferred.then(_e.hitch(this,function(){
this.setValue(_67);
}));
return;
}
this._cursorToStart=true;
if(this.textarea&&(this.isClosed||!this.isLoaded)){
this.textarea.value=_67;
}else{
_67=this._preFilterContent(_67);
var _68=this.isClosed?this.domNode:this.editNode;
if(_67&&has("mozilla")&&_67.toLowerCase()===""){
_67="
";
}
if(!_67&&has("webkit")){
_67=" ";
}
_68.innerHTML=_67;
this._preDomFilterContent(_68);
}
this.onDisplayChanged();
this._set("value",this.getValue(true));
},replaceValue:function(_69){
if(this.isClosed){
this.setValue(_69);
}else{
if(this.window&&this.window.getSelection&&!has("mozilla")){
this.setValue(_69);
}else{
if(this.window&&this.window.getSelection){
_69=this._preFilterContent(_69);
this.execCommand("selectall");
if(!_69){
this._cursorToStart=true;
_69=" ";
}
this.execCommand("inserthtml",_69);
this._preDomFilterContent(this.editNode);
}else{
if(this.document&&this.document.selection){
this.setValue(_69);
}
}
}
}
this._set("value",this.getValue(true));
},_preFilterContent:function(_6a){
var ec=_6a;
_1.forEach(this.contentPreFilters,function(ef){
if(ef){
ec=ef(ec);
}
});
return ec;
},_preDomFilterContent:function(dom){
dom=dom||this.editNode;
_1.forEach(this.contentDomPreFilters,function(ef){
if(ef&&_e.isFunction(ef)){
ef(dom);
}
},this);
},_postFilterContent:function(dom,_6b){
var ec;
if(!_e.isString(dom)){
dom=dom||this.editNode;
if(this.contentDomPostFilters.length){
if(_6b){
dom=_e.clone(dom);
}
_1.forEach(this.contentDomPostFilters,function(ef){
dom=ef(dom);
});
}
ec=_18.getChildrenHtml(dom);
}else{
ec=dom;
}
if(!_e.trim(ec.replace(/^\xA0\xA0*/,"").replace(/\xA0\xA0*$/,"")).length){
ec="";
}
_1.forEach(this.contentPostFilters,function(ef){
ec=ef(ec);
});
return ec;
},_saveContent:function(){
var _6c=_5.byId(_1a._scopeName+"._editor.RichText.value");
if(_6c){
if(_6c.value){
_6c.value+=this._SEPARATOR;
}
_6c.value+=this.name+this._NAME_CONTENT_SEP+this.getValue(true);
}
},escapeXml:function(str,_6d){
str=str.replace(/&/gm,"&").replace(//gm,">").replace(/"/gm,""");
if(!_6d){
str=str.replace(/'/gm,"'");
}
return str;
},getNodeHtml:function(_6e){
_c.deprecated("dijit.Editor::getNodeHtml is deprecated","use dijit/_editor/html::getNodeHtml instead",2);
return _18.getNodeHtml(_6e);
},getNodeChildrenHtml:function(dom){
_c.deprecated("dijit.Editor::getNodeChildrenHtml is deprecated","use dijit/_editor/html::getChildrenHtml instead",2);
return _18.getChildrenHtml(dom);
},close:function(_6f){
if(this.isClosed){
return;
}
if(!arguments.length){
_6f=true;
}
if(_6f){
this._set("value",this.getValue(true));
}
if(this.interval){
clearInterval(this.interval);
}
if(this._webkitListener){
this.disconnect(this._webkitListener);
delete this._webkitListener;
}
if(has("ie")){
this.iframe.onfocus=null;
}
this.iframe._loadFunc=null;
if(this._iframeRegHandle){
this._iframeRegHandle.remove();
delete this._iframeRegHandle;
}
if(this.textarea){
var s=this.textarea.style;
s.position="";
s.left=s.top="";
if(has("ie")){
s.overflow=this.__overflow;
this.__overflow=null;
}
this.textarea.value=this.value;
_8.destroy(this.domNode);
this.domNode=this.textarea;
}else{
this.domNode.innerHTML=this.value;
}
delete this.iframe;
_7.remove(this.domNode,this.baseClass);
this.isClosed=true;
this.isLoaded=false;
delete this.editNode;
delete this.focusNode;
if(this.window&&this.window._frameElement){
this.window._frameElement=null;
}
this.window=null;
this.document=null;
this.editingArea=null;
this.editorObject=null;
},destroy:function(){
if(!this.isClosed){
this.close(false);
}
if(this._updateTimer){
this._updateTimer.remove();
}
this.inherited(arguments);
if(_1b._globalSaveHandler){
delete _1b._globalSaveHandler[this.id];
}
},_removeMozBogus:function(_70){
return _70.replace(/\stype="_moz"/gi,"").replace(/\s_moz_dirty=""/gi,"").replace(/_moz_resizing="(true|false)"/gi,"");
},_removeWebkitBogus:function(_71){
_71=_71.replace(/\sclass="webkit-block-placeholder"/gi,"");
_71=_71.replace(/\sclass="apple-style-span"/gi,"");
_71=_71.replace(//gi,"");
return _71;
},_normalizeFontStyle:function(_72){
return _72.replace(/<(\/)?strong([ \>])/gi,"<$1b$2").replace(/<(\/)?em([ \>])/gi,"<$1i$2");
},_preFixUrlAttributes:function(_73){
return _73.replace(/(?:(]+))/gi,"$1$4$2$3$5$2 _djrealurl=$2$3$5$2").replace(/(?:(]+))/gi,"$1$4$2$3$5$2 _djrealurl=$2$3$5$2");
},_browserQueryCommandEnabled:function(_74){
if(!_74){
return false;
}
var _75=has("ie")?this.document.selection.createRange():this.document;
try{
return _75.queryCommandEnabled(_74);
}
catch(e){
return false;
}
},_createlinkEnabledImpl:function(){
var _76=true;
if(has("opera")){
var sel=this.window.getSelection();
if(sel.isCollapsed){
_76=true;
}else{
_76=this.document.queryCommandEnabled("createlink");
}
}else{
_76=this._browserQueryCommandEnabled("createlink");
}
return _76;
},_unlinkEnabledImpl:function(){
var _77=true;
if(has("mozilla")||has("webkit")){
_77=this._sCall("hasAncestorElement",["a"]);
}else{
_77=this._browserQueryCommandEnabled("unlink");
}
return _77;
},_inserttableEnabledImpl:function(){
var _78=true;
if(has("mozilla")||has("webkit")){
_78=true;
}else{
_78=this._browserQueryCommandEnabled("inserttable");
}
return _78;
},_cutEnabledImpl:function(){
var _79=true;
if(has("webkit")){
var sel=this.window.getSelection();
if(sel){
sel=sel.toString();
}
_79=!!sel;
}else{
_79=this._browserQueryCommandEnabled("cut");
}
return _79;
},_copyEnabledImpl:function(){
var _7a=true;
if(has("webkit")){
var sel=this.window.getSelection();
if(sel){
sel=sel.toString();
}
_7a=!!sel;
}else{
_7a=this._browserQueryCommandEnabled("copy");
}
return _7a;
},_pasteEnabledImpl:function(){
var _7b=true;
if(has("webkit")){
return true;
}else{
_7b=this._browserQueryCommandEnabled("paste");
}
return _7b;
},_inserthorizontalruleImpl:function(_7c){
if(has("ie")){
return this._inserthtmlImpl("
");
}
return this.document.execCommand("inserthorizontalrule",false,_7c);
},_unlinkImpl:function(_7d){
if((this.queryCommandEnabled("unlink"))&&(has("mozilla")||has("webkit"))){
var a=this._sCall("getAncestorElement",["a"]);
this._sCall("selectElement",[a]);
return this.document.execCommand("unlink",false,null);
}
return this.document.execCommand("unlink",false,_7d);
},_hilitecolorImpl:function(_7e){
var _7f;
var _80=this._handleTextColorOrProperties("hilitecolor",_7e);
if(!_80){
if(has("mozilla")){
this.document.execCommand("styleWithCSS",false,true);
_7f=this.document.execCommand("hilitecolor",false,_7e);
this.document.execCommand("styleWithCSS",false,false);
}else{
_7f=this.document.execCommand("hilitecolor",false,_7e);
}
}
return _7f;
},_backcolorImpl:function(_81){
if(has("ie")){
_81=_81?_81:null;
}
var _82=this._handleTextColorOrProperties("backcolor",_81);
if(!_82){
_82=this.document.execCommand("backcolor",false,_81);
}
return _82;
},_forecolorImpl:function(_83){
if(has("ie")){
_83=_83?_83:null;
}
var _84=false;
_84=this._handleTextColorOrProperties("forecolor",_83);
if(!_84){
_84=this.document.execCommand("forecolor",false,_83);
}
return _84;
},_inserthtmlImpl:function(_85){
_85=this._preFilterContent(_85);
var rv=true;
if(has("ie")){
var _86=this.document.selection.createRange();
if(this.document.selection.type.toUpperCase()==="CONTROL"){
var n=_86.item(0);
while(_86.length){
_86.remove(_86.item(0));
}
n.outerHTML=_85;
}else{
_86.pasteHTML(_85);
}
_86.select();
}else{
if(has("mozilla")&&!_85.length){
this._sCall("remove");
}else{
rv=this.document.execCommand("inserthtml",false,_85);
}
}
return rv;
},_boldImpl:function(_87){
var _88=false;
if(has("ie")){
this._adaptIESelection();
_88=this._adaptIEFormatAreaAndExec("bold");
}
if(!_88){
_88=this.document.execCommand("bold",false,_87);
}
return _88;
},_italicImpl:function(_89){
var _8a=false;
if(has("ie")){
this._adaptIESelection();
_8a=this._adaptIEFormatAreaAndExec("italic");
}
if(!_8a){
_8a=this.document.execCommand("italic",false,_89);
}
return _8a;
},_underlineImpl:function(_8b){
var _8c=false;
if(has("ie")){
this._adaptIESelection();
_8c=this._adaptIEFormatAreaAndExec("underline");
}
if(!_8c){
_8c=this.document.execCommand("underline",false,_8b);
}
return _8c;
},_strikethroughImpl:function(_8d){
var _8e=false;
if(has("ie")){
this._adaptIESelection();
_8e=this._adaptIEFormatAreaAndExec("strikethrough");
}
if(!_8e){
_8e=this.document.execCommand("strikethrough",false,_8d);
}
return _8e;
},_superscriptImpl:function(_8f){
var _90=false;
if(has("ie")){
this._adaptIESelection();
_90=this._adaptIEFormatAreaAndExec("superscript");
}
if(!_90){
_90=this.document.execCommand("superscript",false,_8f);
}
return _90;
},_subscriptImpl:function(_91){
var _92=false;
if(has("ie")){
this._adaptIESelection();
_92=this._adaptIEFormatAreaAndExec("subscript");
}
if(!_92){
_92=this.document.execCommand("subscript",false,_91);
}
return _92;
},_fontnameImpl:function(_93){
var _94;
if(has("ie")){
_94=this._handleTextColorOrProperties("fontname",_93);
}
if(!_94){
_94=this.document.execCommand("fontname",false,_93);
}
return _94;
},_fontsizeImpl:function(_95){
var _96;
if(has("ie")){
_96=this._handleTextColorOrProperties("fontsize",_95);
}
if(!_96){
_96=this.document.execCommand("fontsize",false,_95);
}
return _96;
},_insertorderedlistImpl:function(_97){
var _98=false;
if(has("ie")){
_98=this._adaptIEList("insertorderedlist",_97);
}
if(!_98){
_98=this.document.execCommand("insertorderedlist",false,_97);
}
return _98;
},_insertunorderedlistImpl:function(_99){
var _9a=false;
if(has("ie")){
_9a=this._adaptIEList("insertunorderedlist",_99);
}
if(!_9a){
_9a=this.document.execCommand("insertunorderedlist",false,_99);
}
return _9a;
},getHeaderHeight:function(){
return this._getNodeChildrenHeight(this.header);
},getFooterHeight:function(){
return this._getNodeChildrenHeight(this.footer);
},_getNodeChildrenHeight:function(_9b){
var h=0;
if(_9b&&_9b.childNodes){
var i;
for(i=0;i<_9b.childNodes.length;i++){
var _9c=_9.position(_9b.childNodes[i]);
h+=_9c.h;
}
}
return h;
},_isNodeEmpty:function(_9d,_9e){
if(_9d.nodeType===1){
if(_9d.childNodes.length>0){
return this._isNodeEmpty(_9d.childNodes[0],_9e);
}
return true;
}else{
if(_9d.nodeType===3){
return (_9d.nodeValue.substring(_9e)==="");
}
}
return false;
},_removeStartingRangeFromRange:function(_9f,_a0){
if(_9f.nextSibling){
_a0.setStart(_9f.nextSibling,0);
}else{
var _a1=_9f.parentNode;
while(_a1&&_a1.nextSibling==null){
_a1=_a1.parentNode;
}
if(_a1){
_a0.setStart(_a1.nextSibling,0);
}
}
return _a0;
},_adaptIESelection:function(){
var _a2=_17.getSelection(this.window);
if(_a2&&_a2.rangeCount&&!_a2.isCollapsed){
var _a3=_a2.getRangeAt(0);
var _a4=_a3.startContainer;
var _a5=_a3.startOffset;
while(_a4.nodeType===3&&_a5>=_a4.length&&_a4.nextSibling){
_a5=_a5-_a4.length;
_a4=_a4.nextSibling;
}
var _a6=null;
while(this._isNodeEmpty(_a4,_a5)&&_a4!==_a6){
_a6=_a4;
_a3=this._removeStartingRangeFromRange(_a4,_a3);
_a4=_a3.startContainer;
_a5=0;
}
_a2.removeAllRanges();
_a2.addRange(_a3);
}
},_adaptIEFormatAreaAndExec:function(_a7){
var _a8=_17.getSelection(this.window);
var doc=this.document;
var rs,ret,_a9,txt,_aa,_ab,_ac,_ad;
if(_a7&&_a8&&_a8.isCollapsed){
var _ae=this.queryCommandValue(_a7);
if(_ae){
var _af=this._tagNamesForCommand(_a7);
_a9=_a8.getRangeAt(0);
var fs=_a9.startContainer;
if(fs.nodeType===3){
var _b0=_a9.endOffset;
if(fs.length<_b0){
ret=this._adjustNodeAndOffset(rs,_b0);
fs=ret.node;
_b0=ret.offset;
}
}
var _b1;
while(fs&&fs!==this.editNode){
var _b2=fs.tagName?fs.tagName.toLowerCase():"";
if(_1.indexOf(_af,_b2)>-1){
_b1=fs;
break;
}
fs=fs.parentNode;
}
if(_b1){
rs=_a9.startContainer;
var _b3=doc.createElement(_b1.tagName);
_8.place(_b3,_b1,"after");
if(rs&&rs.nodeType===3){
var _b4,_b5;
var _b6=_a9.endOffset;
if(rs.length<_b6){
ret=this._adjustNodeAndOffset(rs,_b6);
rs=ret.node;
_b6=ret.offset;
}
txt=rs.nodeValue;
_aa=doc.createTextNode(txt.substring(0,_b6));
var _b7=txt.substring(_b6,txt.length);
if(_b7){
_ab=doc.createTextNode(_b7);
}
_8.place(_aa,rs,"before");
if(_ab){
_ac=doc.createElement("span");
_ac.className="ieFormatBreakerSpan";
_8.place(_ac,rs,"after");
_8.place(_ab,_ac,"after");
_ab=_ac;
}
_8.destroy(rs);
var _b8=_aa.parentNode;
var _b9=[];
var _ba;
while(_b8!==_b1){
var tg=_b8.tagName;
_ba={tagName:tg};
_b9.push(_ba);
var _bb=doc.createElement(tg);
if(_b8.style){
if(_bb.style){
if(_b8.style.cssText){
_bb.style.cssText=_b8.style.cssText;
_ba.cssText=_b8.style.cssText;
}
}
}
if(_b8.tagName==="FONT"){
if(_b8.color){
_bb.color=_b8.color;
_ba.color=_b8.color;
}
if(_b8.face){
_bb.face=_b8.face;
_ba.face=_b8.face;
}
if(_b8.size){
_bb.size=_b8.size;
_ba.size=_b8.size;
}
}
if(_b8.className){
_bb.className=_b8.className;
_ba.className=_b8.className;
}
if(_ab){
_b4=_ab;
while(_b4){
_b5=_b4.nextSibling;
_bb.appendChild(_b4);
_b4=_b5;
}
}
if(_bb.tagName==_b8.tagName){
_ac=doc.createElement("span");
_ac.className="ieFormatBreakerSpan";
_8.place(_ac,_b8,"after");
_8.place(_bb,_ac,"after");
}else{
_8.place(_bb,_b8,"after");
}
_aa=_b8;
_ab=_bb;
_b8=_b8.parentNode;
}
if(_ab){
_b4=_ab;
if(_b4.nodeType===1||(_b4.nodeType===3&&_b4.nodeValue)){
_b3.innerHTML="";
}
while(_b4){
_b5=_b4.nextSibling;
_b3.appendChild(_b4);
_b4=_b5;
}
}
var _bc;
if(_b9.length){
_ba=_b9.pop();
var _bd=doc.createElement(_ba.tagName);
if(_ba.cssText&&_bd.style){
_bd.style.cssText=_ba.cssText;
}
if(_ba.className){
_bd.className=_ba.className;
}
if(_ba.tagName==="FONT"){
if(_ba.color){
_bd.color=_ba.color;
}
if(_ba.face){
_bd.face=_ba.face;
}
if(_ba.size){
_bd.size=_ba.size;
}
}
_8.place(_bd,_b3,"before");
while(_b9.length){
_ba=_b9.pop();
var _be=doc.createElement(_ba.tagName);
if(_ba.cssText&&_be.style){
_be.style.cssText=_ba.cssText;
}
if(_ba.className){
_be.className=_ba.className;
}
if(_ba.tagName==="FONT"){
if(_ba.color){
_be.color=_ba.color;
}
if(_ba.face){
_be.face=_ba.face;
}
if(_ba.size){
_be.size=_ba.size;
}
}
_bd.appendChild(_be);
_bd=_be;
}
_ad=doc.createTextNode(".");
_ac.appendChild(_ad);
_bd.appendChild(_ad);
_bc=_17.create(this.window);
_bc.setStart(_ad,0);
_bc.setEnd(_ad,_ad.length);
_a8.removeAllRanges();
_a8.addRange(_bc);
this._sCall("collapse",[false]);
_ad.parentNode.innerHTML="";
}else{
_ac=doc.createElement("span");
_ac.className="ieFormatBreakerSpan";
_ad=doc.createTextNode(".");
_ac.appendChild(_ad);
_8.place(_ac,_b3,"before");
_bc=_17.create(this.window);
_bc.setStart(_ad,0);
_bc.setEnd(_ad,_ad.length);
_a8.removeAllRanges();
_a8.addRange(_bc);
this._sCall("collapse",[false]);
_ad.parentNode.innerHTML="";
}
if(!_b3.firstChild){
_8.destroy(_b3);
}
return true;
}
}
return false;
}else{
_a9=_a8.getRangeAt(0);
rs=_a9.startContainer;
if(rs&&rs.nodeType===3){
var _b0=_a9.startOffset;
if(rs.length<_b0){
ret=this._adjustNodeAndOffset(rs,_b0);
rs=ret.node;
_b0=ret.offset;
}
txt=rs.nodeValue;
_aa=doc.createTextNode(txt.substring(0,_b0));
var _b7=txt.substring(_b0);
if(_b7!==""){
_ab=doc.createTextNode(txt.substring(_b0));
}
_ac=doc.createElement("span");
_ad=doc.createTextNode(".");
_ac.appendChild(_ad);
if(_aa.length){
_8.place(_aa,rs,"after");
}else{
_aa=rs;
}
_8.place(_ac,_aa,"after");
if(_ab){
_8.place(_ab,_ac,"after");
}
_8.destroy(rs);
var _bc=_17.create(this.window);
_bc.setStart(_ad,0);
_bc.setEnd(_ad,_ad.length);
_a8.removeAllRanges();
_a8.addRange(_bc);
doc.execCommand(_a7);
_8.place(_ac.firstChild,_ac,"before");
_8.destroy(_ac);
_bc.setStart(_ad,0);
_bc.setEnd(_ad,_ad.length);
_a8.removeAllRanges();
_a8.addRange(_bc);
this._sCall("collapse",[false]);
_ad.parentNode.innerHTML="";
return true;
}
}
}else{
return false;
}
},_adaptIEList:function(_bf){
var _c0=_17.getSelection(this.window);
if(_c0.isCollapsed){
if(_c0.rangeCount&&!this.queryCommandValue(_bf)){
var _c1=_c0.getRangeAt(0);
var sc=_c1.startContainer;
if(sc&&sc.nodeType==3){
if(!_c1.startOffset){
var _c2="ul";
if(_bf==="insertorderedlist"){
_c2="ol";
}
var _c3=this.document.createElement(_c2);
var li=_8.create("li",null,_c3);
_8.place(_c3,sc,"before");
li.appendChild(sc);
_8.create("br",null,_c3,"after");
var _c4=_17.create(this.window);
_c4.setStart(sc,0);
_c4.setEnd(sc,sc.length);
_c0.removeAllRanges();
_c0.addRange(_c4);
this._sCall("collapse",[true]);
return true;
}
}
}
}
return false;
},_handleTextColorOrProperties:function(_c5,_c6){
var _c7=_17.getSelection(this.window);
var doc=this.document;
var rs,ret,_c8,txt,_c9,_ca,_cb,_cc;
_c6=_c6||null;
if(_c5&&_c7&&_c7.isCollapsed){
if(_c7.rangeCount){
_c8=_c7.getRangeAt(0);
rs=_c8.startContainer;
if(rs&&rs.nodeType===3){
var _cd=_c8.startOffset;
if(rs.length<_cd){
ret=this._adjustNodeAndOffset(rs,_cd);
rs=ret.node;
_cd=ret.offset;
}
txt=rs.nodeValue;
_c9=doc.createTextNode(txt.substring(0,_cd));
var _ce=txt.substring(_cd);
if(_ce!==""){
_ca=doc.createTextNode(txt.substring(_cd));
}
_cb=doc.createElement("span");
_cc=doc.createTextNode(".");
_cb.appendChild(_cc);
var _cf=doc.createElement("span");
_cb.appendChild(_cf);
if(_c9.length){
_8.place(_c9,rs,"after");
}else{
_c9=rs;
}
_8.place(_cb,_c9,"after");
if(_ca){
_8.place(_ca,_cb,"after");
}
_8.destroy(rs);
var _d0=_17.create(this.window);
_d0.setStart(_cc,0);
_d0.setEnd(_cc,_cc.length);
_c7.removeAllRanges();
_c7.addRange(_d0);
if(has("webkit")){
var _d1="color";
if(_c5==="hilitecolor"||_c5==="backcolor"){
_d1="backgroundColor";
}
_a.set(_cb,_d1,_c6);
this._sCall("remove",[]);
_8.destroy(_cf);
_cb.innerHTML=" ";
this._sCall("selectElement",[_cb]);
this.focus();
}else{
this.execCommand(_c5,_c6);
_8.place(_cb.firstChild,_cb,"before");
_8.destroy(_cb);
_d0.setStart(_cc,0);
_d0.setEnd(_cc,_cc.length);
_c7.removeAllRanges();
_c7.addRange(_d0);
this._sCall("collapse",[false]);
_cc.parentNode.removeChild(_cc);
}
return true;
}
}
}
return false;
},_adjustNodeAndOffset:function(_d2,_d3){
while(_d2.length<_d3&&_d2.nextSibling&&_d2.nextSibling.nodeType===3){
_d3=_d3-_d2.length;
_d2=_d2.nextSibling;
}
return {"node":_d2,"offset":_d3};
},_tagNamesForCommand:function(_d4){
if(_d4==="bold"){
return ["b","strong"];
}else{
if(_d4==="italic"){
return ["i","em"];
}else{
if(_d4==="strikethrough"){
return ["s","strike"];
}else{
if(_d4==="superscript"){
return ["sup"];
}else{
if(_d4==="subscript"){
return ["sub"];
}else{
if(_d4==="underline"){
return ["u"];
}
}
}
}
}
}
return [];
},_stripBreakerNodes:function(_d5){
if(!this.isLoaded){
return;
}
_f(".ieFormatBreakerSpan",_d5).forEach(function(b){
while(b.firstChild){
_8.place(b.firstChild,b,"before");
}
_8.destroy(b);
});
return _d5;
}});
return _1b;
});