tb-ebit-form.js 465 Bytes
Newer Older
kevin's avatar
kevin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
analysisModule.directive('tbEbitForm', ['$log', 'enums',
    function ($log, enums) {
        'use strict';
        $log.debug('tbEbitForm.ctor()...');

        return {
            restrict: 'E',
            templateUrl: '/app/analysis/table/tb-ebit-form.html' + '?_=' + Math.random(),
            scope: {
            },
            controller: 'tableReportSheetController',
            link: function ($scope, $ele, $attr) {
            }
        };
    }
]);