frameworkModule.directive("dashboardTaxRiskAlert", [function () {
'use strict';
return {
restrict: "A",
templateUrl: "/app/dashboard/tax-risk-alert/tax-risk-alert.html" + '?_=' + Math.random(),
replace: true,
scope: {
options: "=dashboardTaxRiskAlert"
},
controller: "dashboardTaxRiskAlertController",
link: function ($scope, $element, $attr) {
}
};
}]);
-
neo authored7af1ea1e