| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1× | angular.module('webmapp')
.controller('AttributionController', function AttributionController(
Utils,
CONFIG
) {
var vm = {};
vm.colors = CONFIG.MAIN ? CONFIG.MAIN.STYLE : CONFIG.STYLE;
vm.openInAppBrowser = Utils.openInAppBrowser;
vm.title = CONFIG.OPTIONS.title;
return vm;
}); |