Home
last modified time | relevance | path

Searched refs:existingNode (Results 1 – 5 of 5) sorted by relevance

/plugin/wysiwyg/fckeditor/editor/_source/classes/
H A Dfckdocumentfragment_gecko.js42 InsertAfterNode : function( existingNode ) argument
44 FCKDomTools.InsertAfterNode( existingNode, this.RootNode ) ;
H A Dfckdocumentfragment_ie.js50 InsertAfterNode : function( existingNode ) argument
56 FCKDomTools.InsertAfterNode( existingNode, eRoot.removeChild( eLast ) ) ;
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D2.2.js31350 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 D2.2.js.map1existingNode = node.getValue() || null;\n while (existingNode && existingNode.hasChildren()…
/plugin/wysiwyg/fckeditor/editor/_source/internals/
H A Dfckdomtools.js312 InsertAfterNode : function( existingNode, newNode ) argument
314 return existingNode.parentNode.insertBefore( newNode, existingNode.nextSibling ) ;