UNPKG

unserver-unify

Version:

22 lines (20 loc) 496 B
'use strict'; angular.module('bamboo.common').service('sgpowerConfigSvs', sgpowerConfigSvs); sgpowerConfigSvs.$inject = []; function sgpowerConfigSvs() { var self = this; self.getConfig = function() { var config = { certConfig: { orientation: 'portrait', }, LoginFooter:{ companyRights:"©2017 Singapore Power Ltd. All Rights Reserved." }, homeConfig:{ hideHotTopic:true } }; return config; } }