Files
InventoryTracker/InventoryTraker.Web/js/report/DistributionReportDirective.js
T
2016-09-23 15:12:46 -04:00

18 lines
378 B
JavaScript

(function() {
'use strict';
window.app.directive('distributionReport',
function () {
return {
scope: {distributionData: "="},
templateUrl: '/report/template/distributionReport.tmpl.cshtml',
controller: controller,
controllerAs: 'vm'
}
});
function controller($scope) {
var vm = this;
vm.distributionData = $scope.distributionData;
}
})();