Home
last modified time | relevance | path

Searched refs:docFrag (Results 1 – 6 of 6) sorted by relevance

/plugin/wysiwyg/fckeditor/editor/_source/commandclasses/
H A Dfckblockquotecommand.js73 var docFrag = block.ownerDocument.createDocumentFragment() ;
76 docFrag.appendChild( block.removeChild( block.firstChild ) ) ;
77 paragraphs.push( docFrag.lastChild ) ;
79 block.parentNode.replaceChild( docFrag, block ) ;
150 var docFrag = node.ownerDocument.createDocumentFragment() ;
154 docFrag.appendChild( node.ownerDocument.createElement( 'br' ) ) ;
158 docFrag.appendChild( node.removeChild( node.firstChild ) ) ;
160 docFrag.appendChild( node.ownerDocument.createElement( 'br' ) ) ;
161 node.parentNode.replaceChild( docFrag, node ) ;
H A Dfcklistcommands.js319 var docFrag = doc.createDocumentFragment() ;
321 docFrag.appendChild( contentBlock.removeChild( contentBlock.firstChild ) ) ;
324 listItem.appendChild( docFrag ) ;
/plugin/wysiwyg/fckeditor/editor/_source/classes/
H A Dfckw3crange.js191 var docFrag = new FCKDocumentFragment( this._Document ) ;
194 this._ExecContentsAction( 1, docFrag ) ;
196 return docFrag ;
202 var docFrag = new FCKDocumentFragment( this._Document ) ;
205 this._ExecContentsAction( 2, docFrag ) ;
207 return docFrag ;
210 _ExecContentsAction : function( action, docFrag ) argument
301 if ( docFrag )
302 clone = docFrag.RootNode ;
346 if ( docFrag )
[all …]
H A Dfckdomrange.js97 var docFrag = this._Range.extractContents() ;
99 return docFrag ;
/plugin/snow/
H A Dsnowstorm.js73 docFrag = document.createDocumentFragment();
387 docFrag.appendChild(this.o);
568 storm.targetElement.appendChild(docFrag);
/plugin/wysiwyg/fckeditor/editor/_source/internals/
H A Dfckdomtools.js541 var docFrag = range.ExtractContents() ;
547 docFrag.InsertAfterNode( element ) ;