BerniWittmann/spielplanismaning

View on GitHub
src/public/components/jugend-label/jugend-label.ui.js

Summary

Maintainability
A
1 hr
Test Coverage
(function () {
    'use strict';

    angular
        .module('spi.components.jugendlabel.ui', [
            'ui.bootstrap'
        ])
        .controller('JugendLabelController', JugendLabelController)
        .component('spiJugendLabel', {
            templateUrl: 'components/jugend-label/jugend-label.html',
            bindings: {
                jugend: '='
            },
            controller: 'JugendLabelController',
            controllerAs: 'vm'
        });

    function JugendLabelController() {}

})();