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.

13 lines
351 B

evoapp.factory('globals', function($rootScope, plugins, utils, message, settings, dataService, modelService) {
var me = this;
return {
plugins: plugins,
utils: utils,
message: message,
settings: settings.settings,
dataService: dataService,
modelService: modelService
};
});