summaryrefslogtreecommitdiffstats
path: root/3rdparty/js/angular-1.0.2/docs/partials/api/ng.directive:ngHide.html
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/js/angular-1.0.2/docs/partials/api/ng.directive:ngHide.html')
-rw-r--r--3rdparty/js/angular-1.0.2/docs/partials/api/ng.directive:ngHide.html48
1 files changed, 48 insertions, 0 deletions
diff --git a/3rdparty/js/angular-1.0.2/docs/partials/api/ng.directive:ngHide.html b/3rdparty/js/angular-1.0.2/docs/partials/api/ng.directive:ngHide.html
new file mode 100644
index 000000000..e439b17d0
--- /dev/null
+++ b/3rdparty/js/angular-1.0.2/docs/partials/api/ng.directive:ngHide.html
@@ -0,0 +1,48 @@
+<h1><code ng:non-bindable="">ngHide</code>
+<span class="hint">(directive in module <code ng:non-bindable="">ng</code>
+)</span>
+</h1>
+<div><h2 id="Description">Description</h2>
+<div class="description"><p>The <code>ngHide</code> and <code>ngShow</code> directives hide or show a portion
+of the HTML conditionally.</p></div>
+<h2 id="Usage">Usage</h2>
+<div class="usage">as attribute<pre class="prettyprint linenums">&lt;ANY ng-hide="{expression}"&gt;
+ ...
+&lt;/ANY&gt;</pre>
+as class<pre class="prettyprint linenums">&lt;ANY class="ng-hide: {expression};"&gt;
+ ...
+&lt;/ANY&gt;</pre>
+<h3 id="Parameters">Parameters</h3>
+<ul class="parameters"><li><code ng:non-bindable="">ngHide – {expression} – </code>
+<p>If the <a href="guide/expression">expression</a> truthy then
+the element is shown or hidden respectively.</p></li>
+</ul>
+</div>
+<h2 id="Example">Example</h2>
+<div class="example"><h4>Source</h4>
+<div source-edit="" source-edit-deps="angular.js" source-edit-html="index.html-177" source-edit-css="" source-edit-js="" source-edit-unit="" source-edit-scenario="scenario.js-178"></div>
+<div class="tabbable"><div class="tab-pane" title="index.html">
+<pre class="prettyprint linenums" ng-set-text="index.html-177" ng-html-wrap=" angular.js"></pre>
+<script type="text/ng-template" id="index.html-177">
+ Click me: <input type="checkbox" ng-model="checked"><br/>
+ Show: <span ng-show="checked">I show up when you checkbox is checked?</span> <br/>
+ Hide: <span ng-hide="checked">I hide when you checkbox is checked?</span>
+</script>
+</div>
+<div class="tab-pane" title="End to end test">
+<pre class="prettyprint linenums" ng-set-text="scenario.js-178"></pre>
+<script type="text/ng-template" id="scenario.js-178">
+ it('should check ng-show / ng-hide', function() {
+ expect(element('.doc-example-live span:first:hidden').count()).toEqual(1);
+ expect(element('.doc-example-live span:last:visible').count()).toEqual(1);
+
+ input('checked').check();
+
+ expect(element('.doc-example-live span:first:visible').count()).toEqual(1);
+ expect(element('.doc-example-live span:last:hidden').count()).toEqual(1);
+ });
+</script>
+</div>
+</div><h4>Demo</h4>
+<div class="well doc-example-live" ng-embed-app="" ng-set-html="index.html-177" ng-eval-javascript=""></div></div>
+</div>