Upgrade to angularjs 1.2.0 rc1
This commit is contained in:
parent
d223dfd662
commit
d6b021bfaf
674 changed files with 79667 additions and 62269 deletions
54
lib/angular/docs/partials/api/ng.directive:input.checkbox.html
Normal file → Executable file
54
lib/angular/docs/partials/api/ng.directive:input.checkbox.html
Normal file → Executable file
|
@ -1,9 +1,11 @@
|
|||
<h1><code ng:non-bindable="">input [checkbox]</code>
|
||||
<span class="hint">(directive in module <code ng:non-bindable="">ng</code>
|
||||
)</span>
|
||||
<a href="http://github.com/angular/angular.js/tree/v1.2.0rc1/src/ng/directive/input.js#L334" class="view-source btn btn-action"><i class="icon-zoom-in"> </i> View source</a><a href="http://github.com/angular/angular.js/edit/master/src/ng/directive/input.js" class="improve-docs btn btn-primary"><i class="icon-edit"> </i> Improve this doc</a><h1><code ng:non-bindable="">input [checkbox]</code>
|
||||
<div><span class="hint">directive in module <code ng:non-bindable="">ng</code>
|
||||
</span>
|
||||
</div>
|
||||
</h1>
|
||||
<div><a href="http://github.com/angular/angular.js/edit/master/src/ng/directive/input.js" class="improve-docs btn btn-primary">Improve this doc</a><h2 id="Description">Description</h2>
|
||||
<div class="description"><p>HTML checkbox.</p></div>
|
||||
<div><h2 id="Description">Description</h2>
|
||||
<div class="description"><div class="ng-directive-page ng-directive-input-checkbox-page"><p>HTML checkbox.</p>
|
||||
</div></div>
|
||||
<h2 id="Usage">Usage</h2>
|
||||
<div class="usage"><pre class="prettyprint linenums"><input type="checkbox"
|
||||
ng-model="{string}"
|
||||
|
@ -11,26 +13,19 @@
|
|||
[ng-true-value="{string}"]
|
||||
[ng-false-value="{string}"]
|
||||
[ng-change="{string}"]></pre>
|
||||
<h3 id="Parameters">Parameters</h3>
|
||||
<ul class="parameters"><li><code ng:non-bindable="">ngModel – {string} – </code>
|
||||
<p>Assignable angular expression to data-bind to.</p></li>
|
||||
<li><code ng:non-bindable="">name<i>(optional)</i> – {string=} – </code>
|
||||
<p>Property name of the form under which the control is published.</p></li>
|
||||
<li><code ng:non-bindable="">ngTrueValue<i>(optional)</i> – {string=} – </code>
|
||||
<p>The value to which the expression should be set when selected.</p></li>
|
||||
<li><code ng:non-bindable="">ngFalseValue<i>(optional)</i> – {string=} – </code>
|
||||
<p>The value to which the expression should be set when not selected.</p></li>
|
||||
<li><code ng:non-bindable="">ngChange<i>(optional)</i> – {string=} – </code>
|
||||
<p>Angular expression to be executed when input changes due to user
|
||||
interaction with the input element.</p></li>
|
||||
</ul>
|
||||
</div>
|
||||
<h4 id="parameters">Parameters</h4><table class="variables-matrix table table-bordered table-striped"><thead><tr><th>Param</th><th>Type</th><th>Details</th></tr></thead><tbody><tr><td>ngModel</td><td><a href="" class="label type-hint type-hint-string">string</a></td><td><div class="ng-directive-page ng-directive-input-checkbox-page"><p>Assignable angular expression to data-bind to.</p>
|
||||
</div></td></tr><tr><td>name <div><em>(optional)</em></div></td><td><a href="" class="label type-hint type-hint-string">string</a></td><td><div class="ng-directive-page ng-directive-input-checkbox-page"><p>Property name of the form under which the control is published.</p>
|
||||
</div></td></tr><tr><td>ngTrueValue <div><em>(optional)</em></div></td><td><a href="" class="label type-hint type-hint-string">string</a></td><td><div class="ng-directive-page ng-directive-input-checkbox-page"><p>The value to which the expression should be set when selected.</p>
|
||||
</div></td></tr><tr><td>ngFalseValue <div><em>(optional)</em></div></td><td><a href="" class="label type-hint type-hint-string">string</a></td><td><div class="ng-directive-page ng-directive-input-checkbox-page"><p>The value to which the expression should be set when not selected.</p>
|
||||
</div></td></tr><tr><td>ngChange <div><em>(optional)</em></div></td><td><a href="" class="label type-hint type-hint-string">string</a></td><td><div class="ng-directive-page ng-directive-input-checkbox-page"><p>Angular expression to be executed when input changes due to user
|
||||
interaction with the input element.</p>
|
||||
</div></td></tr></tbody></table></div>
|
||||
<h2 id="Example">Example</h2>
|
||||
<div class="example"><h4>Source</h4>
|
||||
<div source-edit="" source-edit-deps="angular.js script.js" source-edit-html="index.html-134" source-edit-css="" source-edit-js="script.js-133" source-edit-unit="" source-edit-scenario="scenario.js-135"></div>
|
||||
<div class="example"><div class="ng-directive-page ng-directive-input-checkbox-page"><h4>Source</h2>
|
||||
<div source-edit="" source-edit-deps="angular.js script.js" source-edit-html="index.html-51" source-edit-css="" source-edit-js="script.js-50" source-edit-json="" source-edit-unit="" source-edit-scenario="scenario.js-52"></div>
|
||||
<div class="tabbable"><div class="tab-pane" title="index.html">
|
||||
<pre class="prettyprint linenums" ng-set-text="index.html-134" ng-html-wrap=" angular.js script.js"></pre>
|
||||
<script type="text/ng-template" id="index.html-134">
|
||||
<pre class="prettyprint linenums" ng-set-text="index.html-51" ng-html-wrap=" angular.js script.js"></pre>
|
||||
<script type="text/ng-template" id="index.html-51">
|
||||
|
||||
<form name="myForm" ng-controller="Ctrl">
|
||||
Value1: <input type="checkbox" ng-model="value1"> <br/>
|
||||
|
@ -42,8 +37,8 @@ interaction with the input element.</p></li>
|
|||
</script>
|
||||
</div>
|
||||
<div class="tab-pane" title="script.js">
|
||||
<pre class="prettyprint linenums" ng-set-text="script.js-133"></pre>
|
||||
<script type="text/ng-template" id="script.js-133">
|
||||
<pre class="prettyprint linenums" ng-set-text="script.js-50"></pre>
|
||||
<script type="text/ng-template" id="script.js-50">
|
||||
function Ctrl($scope) {
|
||||
$scope.value1 = true;
|
||||
$scope.value2 = 'YES'
|
||||
|
@ -51,8 +46,8 @@ interaction with the input element.</p></li>
|
|||
</script>
|
||||
</div>
|
||||
<div class="tab-pane" title="End to end test">
|
||||
<pre class="prettyprint linenums" ng-set-text="scenario.js-135"></pre>
|
||||
<script type="text/ng-template" id="scenario.js-135">
|
||||
<pre class="prettyprint linenums" ng-set-text="scenario.js-52"></pre>
|
||||
<script type="text/ng-template" id="scenario.js-52">
|
||||
it('should change state', function() {
|
||||
expect(binding('value1')).toEqual('true');
|
||||
expect(binding('value2')).toEqual('YES');
|
||||
|
@ -64,6 +59,7 @@ interaction with the input element.</p></li>
|
|||
});
|
||||
</script>
|
||||
</div>
|
||||
</div><h4>Demo</h4>
|
||||
<div class="well doc-example-live animator-container" ng-embed-app="" ng-set-html="index.html-134" ng-eval-javascript="script.js-133"></div></div>
|
||||
</div><h2>Demo</h4>
|
||||
<div class="well doc-example-live animate-container" ng-embed-app="" ng-set-html="index.html-51" ng-eval-javascript="script.js-50"></div>
|
||||
</div></div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue