curious what has been the best approach when a module has it's own set of JS/CSS files?
If I use a standard ZF framework setup with
Code:
/myApp/
/application/
/library
/webroot
and I have my modules in the application directory and the webroot directory is the doc root for apache. Where is the best place to put css/js files for the modules? I'd like to have all inclusive modules that contain their own js/css dirs.
so each module would be set up
Code:
/application
/modules/
/module1/
/controllers
/css
/controllers
/js
/models
/views
thanks