Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 7cccb8b

Browse files
Teddy Wingpetebacondarwin
authored andcommitted
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
1 parent a275d53 commit 7cccb8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ngAnimate/animate.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,11 @@
106106
* -webkit-animation: enter_sequence 1s linear; /* Safari/Chrome */
107107
* animation: enter_sequence 1s linear; /* IE10+ and Future Browsers */
108108
* }
109-
* &#64-webkit-keyframes enter_sequence {
109+
* @-webkit-keyframes enter_sequence {
110110
* from { opacity:0; }
111111
* to { opacity:1; }
112112
* }
113-
* &#64keyframes enter_sequence {
113+
* @keyframes enter_sequence {
114114
* from { opacity:0; }
115115
* to { opacity:1; }
116116
* }

0 commit comments

Comments
 (0)