summaryrefslogtreecommitdiffstats
path: root/3rdparty/js/angular-1.0.2/docs/partials/api/angular.copy.html
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/js/angular-1.0.2/docs/partials/api/angular.copy.html')
-rw-r--r--3rdparty/js/angular-1.0.2/docs/partials/api/angular.copy.html31
1 files changed, 0 insertions, 31 deletions
diff --git a/3rdparty/js/angular-1.0.2/docs/partials/api/angular.copy.html b/3rdparty/js/angular-1.0.2/docs/partials/api/angular.copy.html
deleted file mode 100644
index 98db8c9eb..000000000
--- a/3rdparty/js/angular-1.0.2/docs/partials/api/angular.copy.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<h1><code ng:non-bindable="">angular.copy</code>
-<span class="hint">(API in module <code ng:non-bindable="">ng</code>
-)</span>
-</h1>
-<div><h2 id="Description">Description</h2>
-<div class="description"><p>Creates a deep copy of <code>source</code>, which should be an object or an array.</p>
-
-<ul>
-<li>If no destination is supplied, a copy of the object or array is created.</li>
-<li>If a destination is provided, all of its elements (for array) or properties (for objects)
-are deleted and then all elements/properties from the source are copied to it.</li>
-<li>If <code>source</code> is not an object or array, <code>source</code> is returned.</li>
-</ul>
-
-<p>Note: this function is used to augment the Object type in Angular expressions. See
-<a href="api/ng.$filter"><code>ng.$filter</code></a> for more information about Angular arrays.</p></div>
-<h2 id="Usage">Usage</h2>
-<div class="usage"><pre class="prettyprint linenums">angular.copy(source[, destination]);</pre>
-<h3 id="Parameters">Parameters</h3>
-<ul class="parameters"><li><code ng:non-bindable="">source – {*} – </code>
-<p>The source that will be used to make a copy.
-Can be any type, including primitives, <code>null</code>, and <code>undefined</code>.</p></li>
-<li><code ng:non-bindable="">destination<i>(optional)</i> – {(Object|Array)=} – </code>
-<p>Destination into which the source is copied. If
-provided, must be of the same type as <code>source</code>.</p></li>
-</ul>
-<h3 id="Returns">Returns</h3>
-<div class="returns"><code ng:non-bindable="">{*}</code>
-– <p>The copy or updated <code>destination</code>, if <code>destination</code> was specified.</p></div>
-</div>
-</div>