/plugin/wysiwyg/fckeditor/editor/_source/classes/ |
H A D | fckw3crange.js | 299 var clone, levelStartNode, levelClone, currentNode, currentSibling ; 302 clone = docFrag.RootNode ; 328 clone.appendChild( currentNode.cloneNode( true ) ) ; 336 clone.appendChild( currentNode ) ; 342 if ( clone ) 343 clone = levelClone ; 347 clone = docFrag.RootNode ; 376 clone.insertBefore( currentNode.cloneNode( true ), clone.firstChild ) ; 384 clone.insertBefore( currentNode, clone.firstChild ) ; 391 if ( clone ) [all …]
|
/plugin/combo/resources/snippet/js/ |
H A D | combo-html.js | 7 let clone = document.createElement(element.localName); 8 clone.text = element.text 9 Array.from(element.attributes).forEach(attr => clone.setAttribute(attr.name, attr.value)); 10 return clone; 77 let clone = cloneScriptElement(scriptElement); 79 scriptElement.parentNode.replaceChild(clone, scriptElement); 80 clone.addEventListener("load", loaderManager.decrease)
|
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/Iterator/ |
H A D | AssetCollectionIterator.php | 64 $clone = $this->clones[$asset] = clone $asset; 71 $clone->setTargetPath(str_replace('*', $name, $this->output)); 73 $clone = $this->clones[$asset]; 78 $clone->ensureFilter($filter); 81 return $clone;
|
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/ |
H A D | ArrayObjectFilter.php | 28 $clone = clone $arrayObject; 30 $clone->offsetSet($k, $this->copier->copy($v)); 33 return $clone;
|
/plugin/diagramsnet/lib/plugins/ |
H A D | edgeConnection.js | 18 …var clone = this.graph.createVertex(this.graph.getModel().getParent(source), null, null, 0, 0, 6, … 19 var geo = this.graph.getModel().getGeometry(clone); 50 return clone;
|
/plugin/openlayersmapoverlays/lib/ |
H A D | layers.js | 59 …clone:function(obj){if(obj==null){obj=new OpenLayers.Layer.ArcGIS93Rest(this.name,this.url,this.pa…
|
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/PredictionContexts/ |
H A D | ArrayPredictionContext.php | 52 $clone = clone $this; 53 $clone->parents = $parents; 55 return $clone;
|
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Factory/ |
H A D | AssetFactory.php | 270 $clone = clone $leaf; 271 $clone->clearFilters(); 273 $clone->ensureFilter($prevFilter); 275 $clone->load(); 277 …foreach ($filter->getChildren($this, $clone->getContent(), $clone->getSourceDirectory()) as $child…
|
/plugin/diagramsnet/lib/js/diagramly/sidebar/ |
H A D | Sidebar-Advanced.js | 39 edge = edge.clone(); 48 edge = edge.clone(); 53 edge = edge.clone();
|
/plugin/sequencediagram/bower_components/lodash/lib/fp/template/modules/ |
H A D | _util.jst | 4 'clone': require('../clone'),
|
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/ |
H A D | AssetCollection.php | 76 $clone = isset($this->clones[$asset]) ? $this->clones[$asset] : null; 77 if (in_array($needle, array($asset, $clone), true)) { 98 $clone = isset($this->clones[$asset]) ? $this->clones[$asset] : null; 99 if (in_array($needle, array($asset, $clone), true)) {
|
/plugin/diagramsnet/lib/plugins/webcola/ |
H A D | mxWebColaLayout.js | 122 geometry = geometry.clone(); 196 var bounds = model.getGeometry(groupCell).clone(); 308 geometry = geometry.clone(); 314 geometry.offset = geometry.offset.clone(); 367 geometry = geometry.clone(); 373 geometry.offset = geometry.offset.clone();
|
/plugin/virtualkeyboard/vk/extensions/ |
H A D | objectextensions.js | 22 Object.prototype.clone = function (obj) { 27 newObject[objectItem] = obj.clone(obj[objectItem]);
|
/plugin/indexmenu2/cms/extensions/ |
H A D | objectextensions.js | 7 …clone=function(i){if(typeof(i)!="object")return i;try{var I=new i.constructor();}catch(e){return n…
|
/plugin/prettyprint/ |
H A D | script.js | 2 var $img = jQuery("#dokuwiki__header img").clone(); 25 $new_h1 = $h1.clone();
|
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/ |
H A D | README.md | 19 1. [Using simply `clone`](#using-simply-clone) 64 $myCopy = clone $myObject; 69 You use [`__clone()`](http://www.php.net/manual/en/language.oop5.cloning.php#object.clone) and impl… 79 ### Using simply `clone` 81 ![Using clone](doc/clone.png) 86 ![Overridding __clone](doc/deep-clone.png) 289 // $copy should now contain a clone of all entities, including those that were not yet fully loaded. 337 Stop *DeepCopy* from recursively copying element, using standard `clone` instead:
|
/plugin/dw2pdf/vendor/myclabs/deep-copy/ |
H A D | README.md | 14 1. [Using simply `clone`](#using-simply-clone) 59 $myCopy = clone $myObject; 64 You use [`__clone()`](http://www.php.net/manual/en/language.oop5.cloning.php#object.clone) and implement the behavior 74 ### Using simply `clone` 76 ![Using clone](doc/clone.png) 81 ![Overridding __clone](doc/deep-clone.png) 284 // $copy should now contain a clone of all entities, including those that were not yet fully loaded. 332 Stop *DeepCopy* from recursively copying element, using standard `clone` instea [all...] |
/plugin/tablelayout/script/ |
H A D | tablelayout_functions.js | 82 var $frozenTable = $table.clone(); 162 $cell.after($cell.clone(true, true)); 177 $rowCells.last().after($cell.clone(true, true)); 179 $rowCells.eq(colIndex).before($cell.clone(true, true));
|
/plugin/datatables/assets/datatables.net-fixedcolumns/js/ |
H A D | dataTables.fixedColumns.min.js |
|
/plugin/webexteamsnotifier/ |
H A D | README.md | 13 Or simply clone the repository into your DokuWiku plugins folder: 16 $ git clone https://github.com/greldinard/dokuwiki-rocketchat-integration.git /var/lib/dokuwiki/lib…
|
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/ |
H A D | html5shiv.min.js | 171 var clone = data.frag.cloneNode(), 176 clone.createElement(elems[i]); 178 return clone;
|
/plugin/findologicxmlexport/vendor/doctrine/instantiator/ |
H A D | CONTRIBUTING.md | 11 To install the project and run the tests, you need to clone it first: 14 $ git clone git://github.com/doctrine/instantiator.git
|
/plugin/diagramsnet/lib/ |
H A D | workbox-bed83ea8.js | 1 …clone(),r={headers:new Headers(i.headers),status:i.status,statusText:i.statusText},o=e?e(r):r,a=fu…
|
/plugin/struct/script/ |
H A D | EntryEditor.js | 107 var $tpl = $tplwrapper.children().clone(true, true); 113 var $copy = $tpl.clone(true, true);
|
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/ |
H A D | SnapshotNamespace.asciidoc | 22 * <<Elasticsearch_Namespaces_SnapshotNamespaceclone_clone,`clone()`>> 51 .`clone(array $params = [])` 57 $params['snapshot'] = (string) The name of the snapshot to clone from 60 $params['body'] = (array) The snapshot clone definition (Required)
|