summaryrefslogtreecommitdiffstats
path: root/3rdparty/js/angular-1.0.2/docs/partials/api/ng.$controller.html
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-02-12 00:08:35 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2013-02-12 00:08:35 +0100
commit95384df834a47a3e40f72ddc1e585b66af170efd (patch)
tree45593e2939d34ddd6b9c0bc12f6762e29027db04 /3rdparty/js/angular-1.0.2/docs/partials/api/ng.$controller.html
parent65e5cacbb42070774b8d35068f1ce9bd97dff9c7 (diff)
added angular ui for ui-if to not include audio elements everywhere and throw lots of warnings
Diffstat (limited to '3rdparty/js/angular-1.0.2/docs/partials/api/ng.$controller.html')
-rw-r--r--3rdparty/js/angular-1.0.2/docs/partials/api/ng.$controller.html34
1 files changed, 0 insertions, 34 deletions
diff --git a/3rdparty/js/angular-1.0.2/docs/partials/api/ng.$controller.html b/3rdparty/js/angular-1.0.2/docs/partials/api/ng.$controller.html
deleted file mode 100644
index af6efe45e..000000000
--- a/3rdparty/js/angular-1.0.2/docs/partials/api/ng.$controller.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<h1><code ng:non-bindable="">$controller</code>
-<span class="hint">(service in module <code ng:non-bindable="">ng</code>
-)</span>
-</h1>
-<div><h2 id="Description">Description</h2>
-<div class="description"><p><code>$controller</code> service is responsible for instantiating controllers.</p>
-
-<p>It's just simple call to <a href="api/AUTO.$injector"><code>$injector</code></a>, but extracted into
-a service, so that one can override this service with <a href="https://gist.github.com/1649788">BC version</a>.</p></div>
-<h2 id="Dependencies">Dependencies</h2>
-<ul class="dependencies"><li><code ng:non-bindable=""><a href="api/ng.$injector">$injector</a></code>
-</li>
-</ul>
-<h2 id="Usage">Usage</h2>
-<div class="usage"><pre class="prettyprint linenums">$controller(constructor, locals);</pre>
-<h3 id="Parameters">Parameters</h3>
-<ul class="parameters"><li><code ng:non-bindable="">constructor – {Function|string} – </code>
-<p>If called with a function then it's considered to be the
-controller constructor function. Otherwise it's considered to be a string which is used
-to retrieve the controller constructor using the following steps:</p>
-
-<ul>
-<li>check if a controller with given name is registered via <code>$controllerProvider</code></li>
-<li>check if evaluating the string on the current scope returns a constructor</li>
-<li>check <code>window[constructor]</code> on the global <code>window</code> object</li>
-</ul></li>
-<li><code ng:non-bindable="">locals – {Object} – </code>
-<p>Injection locals for Controller.</p></li>
-</ul>
-<h3 id="Returns">Returns</h3>
-<div class="returns"><code ng:non-bindable="">{Object}</code>
-– <p>Instance of given controller.</p></div>
-</div>
-</div>