angular-requirejs-seed icon indicating copy to clipboard operation
angular-requirejs-seed copied to clipboard

Results 15 angular-requirejs-seed issues
Sort by recently updated
recently updated
newest added
trafficstars

define([ 'angular', 'angularRoute', 'view1/view1', 'view2/view2' ], function(angular, angularRoute, view1, view2) {} if there have 1000 pages ,what should you do?the single page will load js of 1000?that too slow!

I've build my app using your [angular-requrejs-seed](https://github.com/tnajdek/angular-requirejs-seed/issues/new), now i need add loader because my app takes time to load first time is there any suggestion to add loader while requirejs...

I love the angularjs-requirejs seed, and have used it several times for a number of projects. For my current project, I'm required to move the tests OUT of the main...

Could I possibly have a different structure in which the components folder also had the views associated with each component - i.e. view2 folder would be a subfolder in the...

Hello Tom, I'm currently using your seed as my project starter and happy with that but I have a problem- the services and directives didn't split into folders and I've...

Trying to access the window variable in the require config will not work with the requireJS optimizer as it will say "ReferenceError: window is not defined"

I tried to use the `resolve` property with `$routeProvider` in `routes.js`: ``` $routeProvider.when('/url'', { templateUrl: '/static/app/partials/template.html', controller: 'Ctrl1', resolve: { getPromise: /* get a promise */ } }); ``` In...

question

I have learned how to declare sub services in this issue: #14 But I want to pass a dependency into the sub-service, for example: ``` define([], function (**DEPENDENCY_HERE**) { return...

question

As in the seed example, when trying to access the MyCtrl2 scope values, i.e, $scope.welcomeMessage = 'hey this is myctrl2.js!'; Getting an error 'Expected undefined to equal 'hey this is...

verification needed