diff options
| author | Teddy Wing | 2014-03-24 23:10:36 -0400 |
|---|---|---|
| committer | Teddy Wing | 2014-03-24 23:10:36 -0400 |
| commit | 91c4889310cdd85dff948d05da896d2d926c6eb2 (patch) | |
| tree | 0ef228123fd7f5db607f94b781afe9590e70091a | |
| parent | 3f609f99527d1a9ddfc371a9eb872ded1664f614 (diff) | |
| download | angular.js-nganimate-docs-at-symbol-HTML-entity-to-character.tar.bz2 | |
docs(ngAnimate): change "@" to "@" symbolnganimate-docs-at-symbol-HTML-entity-to-character
"@" would not be rendered as an "@" symbol (even if we add the
missing semicolon). As @IgorMinar recommended, replacing this with an
actual "@" character works.
Closes #6822.
| -rw-r--r-- | src/ngAnimate/animate.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ngAnimate/animate.js b/src/ngAnimate/animate.js index 542b678f..0466cecb 100644 --- a/src/ngAnimate/animate.js +++ b/src/ngAnimate/animate.js @@ -106,11 +106,11 @@ * -webkit-animation: enter_sequence 1s linear; /* Safari/Chrome */ * animation: enter_sequence 1s linear; /* IE10+ and Future Browsers */ * } - * @-webkit-keyframes enter_sequence { + * @-webkit-keyframes enter_sequence { * from { opacity:0; } * to { opacity:1; } * } - * @keyframes enter_sequence { + * @keyframes enter_sequence { * from { opacity:0; } * to { opacity:1; } * } |
