docs(ngAnimate): change "&#64" to "@" symbol

Previously, we had problems with code that contained symbols that looked
like jsdoc directives.  This has now been fixed so we can convert these
HTML character codes back to @ signs.

Closes #6822
Closes #6826
This commit is contained in:
Teddy Wing
2014-03-24 23:10:36 -04:00
committed by Peter Bacon Darwin
parent a275d539f9
commit 7cccb8b777

View File

@@ -106,11 +106,11 @@
* -webkit-animation: enter_sequence 1s linear; /* Safari/Chrome */
* animation: enter_sequence 1s linear; /* IE10+ and Future Browsers */
* }
* &#64-webkit-keyframes enter_sequence {
* @-webkit-keyframes enter_sequence {
* from { opacity:0; }
* to { opacity:1; }
* }
* &#64keyframes enter_sequence {
* @keyframes enter_sequence {
* from { opacity:0; }
* to { opacity:1; }
* }