config.js 400 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
frameworkModule.directive("dashboardDeferredTaxAnalysisConfig", [function () {
    'use strict';

    return {
        restrict: "A",
        templateUrl: "/app/dashboard/deferred-tax-analysis/config/config.html",
        replace: true,
        scope: {},
        controller: "dashboardDeferredTaxAnalysisConfigController",
        link: function ($scope, $element, $attr) {

        }
    };
}]);