docs(tutorial/step-12): fix refernce to incorrect jquery version

Closes #5156
This commit is contained in:
Elwin Arens 2013-11-26 22:54:38 +01:00 committed by Pete Bacon Darwin
parent f01087f802
commit fbc5cf514b

View file

@ -43,7 +43,7 @@ __`app/index.html`.__
<pre> <pre>
... ...
<!-- jQuery is used for JavaScript animations (include this before angular.js) --> <!-- jQuery is used for JavaScript animations (include this before angular.js) -->
<script src="http://code.jquery.com/jquery-2.0.3.min.js"></script> <script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<!-- required module to enable animation support in AngularJS --> <!-- required module to enable animation support in AngularJS -->
<script src="lib/angular/angular-animate.js"></script> <script src="lib/angular/angular-animate.js"></script>
@ -56,6 +56,10 @@ __`app/index.html`.__
... ...
</pre> </pre>
<div class="alert alert-error">
**Important:** Be sure to use jQuery version `1.10.x`. AngularJS does not yet support jQuery `2.x`.
</div>
Animations can now be created within the CSS code (`animations.css`) as well as the JavaScript code (`animations.js`). Animations can now be created within the CSS code (`animations.css`) as well as the JavaScript code (`animations.js`).
But before we start, let's create a new module which uses the ngAnimate module as a dependency just like we did before But before we start, let's create a new module which uses the ngAnimate module as a dependency just like we did before
with `ngResource`. with `ngResource`.
@ -383,10 +387,6 @@ isn't required to do JavaScript animations with AngularJS, but we're going to us
your own JavaScript animation library is beyond the scope of this tutorial. For more on your own JavaScript animation library is beyond the scope of this tutorial. For more on
`jQuery.animate`, see the {@link http://api.jquery.com/animate/ jQuery documentation}. `jQuery.animate`, see the {@link http://api.jquery.com/animate/ jQuery documentation}.
<div class="alert alert-error">
**Important:** Be sure to use jQuery version `1.10.x`. AngularJS does not yet support jQuery `2.x`.
</div>
The `addClass` and `removeClass` callback functions are called whenever an a class is added or removed The `addClass` and `removeClass` callback functions are called whenever an a class is added or removed
on the element that contains the class we registered, which is in this case `.phone`. When the `.active` on the element that contains the class we registered, which is in this case `.phone`. When the `.active`
class is added to the element (via the `ng-class` directive) the `addClass` JavaScript callback will class is added to the element (via the `ng-class` directive) the `addClass` JavaScript callback will