forked from Coded/SIPRP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
396 B
14 lines
396 B
evoapp.factory('globals', function($rootScope, plugins, utils, message, settings, dataService, modelService, staticData) {
|
|
|
|
var me = this;
|
|
|
|
return {
|
|
plugins: plugins,
|
|
utils: utils,
|
|
message: message,
|
|
settings: settings.settings,
|
|
dataService: dataService,
|
|
modelService: modelService,
|
|
staticData: staticData
|
|
};
|
|
}); |