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
Then adding a line to kickstrap.coffee (which seems like something the user shouldn't have to do; things will break if I update kickstrap):
# Build angular app core
k$.appCore = []
k$.appCore.push 'ks:ang-app/controllers/' + ctrl for ctrl in k$.settings.angular.controllers
k$.appCore.push 'ks:ang-app/directives/' + dctv for dctv in k$.settings.angular.directives
k$.appCore.push 'ks:ang-app/filters/' + filter for filter in k$.settings.angular.filters
k$.appCore.push 'ks:ang-app/services/' + service for service in k$.settings.angular.services
The text was updated successfully, but these errors were encountered:
I didn't see any folder for services and had to create it, which took awhile to figure out.
For future reference it involves adding the folder
assets/apps/ang-app/services
Making
app.services
a dependency inang-app/main.coffee
:Adding a file named
module.coffee
underassets/apps/ang-app/services
with the contents:Then adding a line to kickstrap.coffee (which seems like something the user shouldn't have to do; things will break if I update kickstrap):
The text was updated successfully, but these errors were encountered: