tinesoft / ngx-wow

Angular module for WOW.js: a customizable library to reveal animations when you scroll.
https://tinesoft.github.io/ngx-wow
MIT License
32 stars 7 forks source link

while implementing ngx-wow in your way its not working there is no error but wow is also not running #14

Closed ghost closed 6 years ago

ghost commented 6 years ago

Bug Report or Feature Request (mark with an x)

- [ ] bug report -> please search issues before submitting
- [ ] feature request

OS and Version?

Versions

Repro steps

The log given by the failure

Desired functionality

Mention any other details that might be useful

tinesoft commented 6 years ago

Hi @QuestionDoubt

Can you provide at least the info mentioned in the issue template? Without those minimum info, i cannot help you much.. :( Also, what is your setup? are you using angular CLI or another starter?

tinesoft commented 6 years ago

Hi,

I have indeed forgot to mention in the docs that "wowjs" (which is a peerDependency of this lib) must be installed as well as dependencies of your app (sorry :( )

npm install --save wowjs

and edit .angular-cli.json file:

.angular-cli.json (scripts section)

...
  "scripts": [
        "../node_modules/wowjs/dist/wow.js"
      ],
...

I will update the documentation shortly.

Thanks for reporting!