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
Create custom modules and add in app module is support in new version of angularjs?
I am using v1.5.8 version of angular js.
Example :
(function () {
'use strict';
angular.module('app', [
/*
* Order is not important. Angular makes a
* pass to register all of the modules listed
* and then when app.dashboard tries to use app.data,
* its components are available.
*/
/*
* Everybody has access to these.
* We could place these under every feature area,
* but this is easier to maintain.
*/
'app.core',
/*
* Feature areas
*/
'app.sessionStart'
]);