Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 417 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 417 Bytes

has dependency on module "general.config"

it should contain GENERAL_CONFIG.APP_NAME

example below

(function() { var config_data = { GENERAL_CONFIG: { APP_NAME: "MovieFish" } }, /* set settings */ config_module = angular.module('general.config', []); angular.forEach(config_data, function(key, value) { config_module.constant(value, key); }); }());