You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+34-5Lines changed: 34 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,26 +17,55 @@ View all the directives in action at https://tinesoft.github.io/ngx-wow
17
17
18
18
## Dependencies
19
19
*[Angular](https://angular.io) (*requires* Angular 2 or higher, tested with 2.0.0)
20
+
*[WOW JS](http://mynameismatthieu.com/WOW/) (*requires* WOW JS 1.1 or higher, tested with 1.1.3)
20
21
21
-
## Installation
22
-
Install above dependencies via *npm*.
23
22
24
-
Now install `ngx-wow` via:
23
+
## Installation
24
+
Install above dependencies via *npm*. In particular for `WOW JS`, run:
25
25
```shell
26
-
npm install --save ngx-wow
26
+
npm install --save wowjs
27
27
```
28
28
29
29
---
30
+
##### Angular-CLI
31
+
>**Note**: If you are using `angular-cli` to build your app, make sure that `wowjs` is properly listed as a [global library](https://github.com/angular/angular-cli#global-library-installation), by editing your `angular-cli.json` as such:
32
+
```
33
+
"scripts": [
34
+
"../node_modules/wowjs/dist/wowjs.js"
35
+
],
36
+
```
37
+
30
38
##### SystemJS
31
39
>**Note**:If you are using `SystemJS`, you should adjust your configuration to point to the UMD bundle.
32
40
In your systemjs config file, `map` needs to tell the System loader where to look for `ngx-wow`:
0 commit comments