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
39
lib/angular/docs/partials/api/ng.directive:ngCloak.html
Normal file → Executable file
39
lib/angular/docs/partials/api/ng.directive:ngCloak.html
Normal file → Executable file
|
@ -1,36 +1,32 @@
|
|||
<h1><code ng:non-bindable="">ngCloak</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/ngCloak.js#L3" 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/ngCloak.js" class="improve-docs btn btn-primary"><i class="icon-edit"> </i> Improve this doc</a><h1><code ng:non-bindable="">ngCloak</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/ngCloak.js" class="improve-docs btn btn-primary">Improve this doc</a><h2 id="Description">Description</h2>
|
||||
<div class="description"><p>The <code>ngCloak</code> directive is used to prevent the Angular html template from being briefly
|
||||
<div><h2 id="Description">Description</h2>
|
||||
<div class="description"><div class="ng-directive-page ng-directive-ngcloak-page"><p>The <code>ngCloak</code> directive is used to prevent the Angular html template from being briefly
|
||||
displayed by the browser in its raw (uncompiled) form while your application is loading. Use this
|
||||
directive to avoid the undesirable flicker effect caused by the html template display.</p>
|
||||
|
||||
<p>The directive can be applied to the <code><body></code> element, but typically a fine-grained application is
|
||||
preferred in order to benefit from progressive rendering of the browser view.</p>
|
||||
|
||||
<p><code>ngCloak</code> works in cooperation with a css rule that is embedded within <code>angular.js</code> and
|
||||
<code>angular.min.js</code> files. Following is the css rule:</p>
|
||||
|
||||
<pre class="prettyprint linenums">
|
||||
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
|
||||
display: none;
|
||||
display: none !important;
|
||||
}
|
||||
</pre>
|
||||
|
||||
<p>When this css rule is loaded by the browser, all html elements (including their children) that
|
||||
are tagged with the <code>ng-cloak</code> directive are hidden. When Angular comes across this directive
|
||||
during the compilation of the template it deletes the <code>ngCloak</code> element attribute, which
|
||||
makes the compiled element visible.</p>
|
||||
|
||||
<p>For the best result, <code>angular.js</code> script must be loaded in the head section of the html file;
|
||||
alternatively, the css rule (above) must be included in the external stylesheet of the
|
||||
application.</p>
|
||||
|
||||
<p>Legacy browsers, like IE7, do not provide attribute selector support (added in CSS 2.1) so they
|
||||
cannot match the <code>[ng\:cloak]</code> selector. To work around this limitation, you must add the css
|
||||
class <code>ngCloak</code> in addition to <code>ngCloak</code> directive as shown in the example below.</p></div>
|
||||
class <code>ngCloak</code> in addition to <code>ngCloak</code> directive as shown in the example below.</p>
|
||||
</div></div>
|
||||
<h2 id="Usage">Usage</h2>
|
||||
<div class="usage">as attribute<pre class="prettyprint linenums"><ANY ng-cloak>
|
||||
...
|
||||
|
@ -40,18 +36,18 @@ as class<pre class="prettyprint linenums"><ANY class="ng-cloak">
|
|||
</ANY></pre>
|
||||
</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-149" source-edit-css="" source-edit-js="" source-edit-unit="" source-edit-scenario="scenario.js-150"></div>
|
||||
<div class="example"><div class="ng-directive-page ng-directive-ngcloak-page"><h4>Source</h2>
|
||||
<div source-edit="" source-edit-deps="angular.js" source-edit-html="index.html-33" source-edit-css="" source-edit-js="" source-edit-json="" source-edit-unit="" source-edit-scenario="scenario.js-34"></div>
|
||||
<div class="tabbable"><div class="tab-pane" title="index.html">
|
||||
<pre class="prettyprint linenums" ng-set-text="index.html-149" ng-html-wrap=" angular.js"></pre>
|
||||
<script type="text/ng-template" id="index.html-149">
|
||||
<pre class="prettyprint linenums" ng-set-text="index.html-33" ng-html-wrap=" angular.js"></pre>
|
||||
<script type="text/ng-template" id="index.html-33">
|
||||
<div id="template1" ng-cloak>{{ 'hello' }}</div>
|
||||
<div id="template2" ng-cloak class="ng-cloak">{{ 'hello IE7' }}</div>
|
||||
</script>
|
||||
</div>
|
||||
<div class="tab-pane" title="End to end test">
|
||||
<pre class="prettyprint linenums" ng-set-text="scenario.js-150"></pre>
|
||||
<script type="text/ng-template" id="scenario.js-150">
|
||||
<pre class="prettyprint linenums" ng-set-text="scenario.js-34"></pre>
|
||||
<script type="text/ng-template" id="scenario.js-34">
|
||||
it('should remove the template directive and css class', function() {
|
||||
expect(element('.doc-example-live #template1').attr('ng-cloak')).
|
||||
not().toBeDefined();
|
||||
|
@ -60,6 +56,7 @@ as class<pre class="prettyprint linenums"><ANY class="ng-cloak">
|
|||
});
|
||||
</script>
|
||||
</div>
|
||||
</div><h4>Demo</h4>
|
||||
<div class="well doc-example-live animator-container" ng-embed-app="" ng-set-html="index.html-149" ng-eval-javascript=""></div></div>
|
||||
</div><h2>Demo</h4>
|
||||
<div class="well doc-example-live animate-container" ng-embed-app="" ng-set-html="index.html-33" ng-eval-javascript=""></div>
|
||||
</div></div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue