A newbie question :)
How do I create some sort of utils bundle that would be accessible from all my controllers? I have this route code in my main module:
'use strict';
/* App Module */
angular.module('lpConnect', []).
config(['$routeProvider', function($routeProvider) {
$routeProvider.
when('/home', {template: 'views/home.html', controller: HomeCtrl}).
when('/admin', {template: 'views/admin.html', controller: AdminCtrl}).
when('/connect', {template: 'views/fb_connect.html', controller: MainAppCtrl}).
otherwise({redirectTo: '/connect'});
}]);
and I want a function that will be common to HomeCtrl
,AdminCtrl
,MainAppCtrl
How should I do it in AngularJS?