Update to Angular 1.1.4

This commit is contained in:
Colin Frei 2013-04-07 11:37:21 +02:00
parent 72a485d6e8
commit f5fc1369ad
585 changed files with 48055 additions and 3041 deletions

6
lib/angular/docs/partials/tutorial/step_00.html Normal file → Executable file
View file

@ -1,7 +1,7 @@
<h1><code ng:non-bindable=""></code>
<span class="hint"></span>
</h1>
<div><ul doc-tutorial-nav="0"></ul>
<div><a href="http://github.com/angular/angular.js/edit/master/docs/content/tutorial/step_00.ngdoc" class="improve-docs btn btn-primary">Improve this doc</a><ul doc-tutorial-nav="0"></ul>
<p>You are now ready to build the AngularJS phonecat app. In this step, you will become familiar
with the most important source code files, learn how to start the development servers bundled with
@ -105,7 +105,7 @@ The code contains some key Angular elements that we will need going forward.</p>
<pre><code> &lt;html ng-app&gt;
</code></pre>
<p>The <code>ng-app</code> attribute is represents an Angular directive (named <code>ngApp</code>; Angular uses
<p>The <code>ng-app</code> attribute represents an Angular directive (named <code>ngApp</code>; Angular uses
<code>name-with-dashes</code> for attribute names and <code>camelCase</code> for the corresponding directive name)
used to flag an element which Angular should consider to be the root element of our application.
This gives application developers the freedom to tell Angular if the entire html page or only a
@ -122,7 +122,7 @@ Angular finds the directive, it will bootstrap the application with the root of
being the element on which the <code>ngApp</code> directive was defined.</p></li>
<li><p>Double-curly binding with an expression:</p>
<pre><code> Nothing here {{'yet' + '!'}}`
<pre><code> Nothing here {{'yet' + '!'}}
</code></pre>
<p>This line demonstrates the core feature of Angular's templating capabilities a binding, denoted