all files / components/attribution/ attribution.controller.js

16.67% Statements 1/6
0% Branches 0/2
0% Functions 0/1
16.67% Lines 1/6
1 2 3 4 5 6 7 8 9 10 11 12 13 14                          
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;
    });