Searched refs:existingNode (Results 1 – 5 of 5) sorted by relevance
/plugin/wysiwyg/fckeditor/editor/_source/classes/ |
H A D | fckdocumentfragment_gecko.js | 42 InsertAfterNode : function( existingNode ) argument 44 FCKDomTools.InsertAfterNode( existingNode, this.RootNode ) ;
|
H A D | fckdocumentfragment_ie.js | 50 InsertAfterNode : function( existingNode ) argument 56 FCKDomTools.InsertAfterNode( existingNode, eRoot.removeChild( eLast ) ) ;
|
/plugin/dirtylittlehelper/mermaid/editor/docs/ |
H A D | 2.2.js | 31350 var existingNode = node.getValue() || null; 31351 while (existingNode && existingNode.hasChildren()) { 31352 existingNode = existingNode.findChildAtOffset(this.offset, false); 31359 range: _this.getCompletionRange(existingNode) 31403 this.getUnitProposals(entry, existingNode, result); 31416 this.getVariableProposals(existingNode, result); 31417 this.getTermProposals(entry, existingNode, result); 31525 …if (existingNode && existingNode.parent && existingNode.parent.type === _parser_cssNodes_js__WEBPA… 31526 existingNode = existingNode.getParent(); // include the unary operator 31548 if (existingNode && existingNode.offset <= this.offset && this.offset <= existingNode.end) { [all …]
|
H A D | 2.2.js.map | 1 …existingNode = node.getValue() || null;\n while (existingNode && existingNode.hasChildren()…
|
/plugin/wysiwyg/fckeditor/editor/_source/internals/ |
H A D | fckdomtools.js | 312 InsertAfterNode : function( existingNode, newNode ) argument 314 return existingNode.parentNode.insertBefore( newNode, existingNode.nextSibling ) ;
|