AngularJS - Where to put Jquery / JavaScript functions

2

I have some functions in jquery that would normally be in a .js file, but when I use Angular where should I put following the good practices?

Example: I have a function that determines whether or not my Header is hidden depending on the size of the scroll.

    
asked by anonymous 07.02.2017 / 21:27

1 answer

3

There is nothing in the Angular specification that forces the location of a feature file with extra functionality.

If you are not consuming anything from the Angular and Angular does not expect anything from you, leave the code aside.

    
07.02.2017 / 21:32