From 7cccb8b77758c78ecd34f58dd2ceef048ec55e0f Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Mon, 24 Mar 2014 23:10:36 -0400 Subject: [PATCH] docs(ngAnimate): change "@" 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 --- src/ngAnimate/animate.js | 4 ++-- 1 file 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; } * }