AngularJS Express component to add variables to $rootScope
.
To install the component:
$ ngx install angular-assign-root-scope-variables
No clue what the ngx
command line tool is? Learn more about AngularJS Express.
After installing the component:
- edit
_build/assign-root-scope-variables.js
- add your custom logic
and import the component in your Angular application:
// Angular main module
var ngModule = angular.module('app', []);
// Import component
import c from 'components/angular-assign-root-scope-variables/_build/index';
// Instantiate component
c(ngModule, { baseUrl: 'components/angular-assign-root-scope-variables' });
baseUrl
: Base URL that component can use to construct links
- Initial version