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

Fix several syntax errors in code examples #12995

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/ngAnimate/module.js
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@
* jQuery(element).fadeOut(1000, doneFn);
* }
* }
* }]
* }]);
* ```
*
* The nice thing about JS-based animations is that we can inject other services and make use of advanced animation libraries such as
Expand Down Expand Up @@ -321,7 +321,7 @@
* // do some cool animation and call the doneFn
* }
* }
* }]
* }]);
* ```
*
* ## CSS + JS Animations Together
Expand All @@ -343,7 +343,7 @@
* jQuery(element).slideIn(1000, doneFn);
* }
* }
* }]
* }]);
* ```
*
* ```css
Expand Down Expand Up @@ -372,7 +372,7 @@
* runner.done(doneFn);
* }
* }
* }]
* }]);
* ```
*
* The nice thing here is that we can save bandwidth by sticking to our CSS-based animation code and we don't need to rely on a 3rd-party animation framework.
Expand All @@ -396,7 +396,7 @@
* runner.done(doneFn);
* }
* }
* }]
* }]);
* ```
*
* Now we can fill in the rest via our transition CSS code:
Expand Down