User profile editing and password
This commit is contained in:
@@ -1,7 +1,9 @@
|
||||
(function () {
|
||||
'use strict';
|
||||
(function() {
|
||||
"use strict";
|
||||
|
||||
window.app.controller('DistributionReportController',
|
||||
window.app.controller("DistributionReportController",
|
||||
[
|
||||
"$scope", "reportSvc", "downloadSvc",
|
||||
function($scope, reportSvc, downloadSvc) {
|
||||
var vm = this;
|
||||
vm.loadData = reportSvc.loadDistributionReport;
|
||||
@@ -10,6 +12,7 @@
|
||||
vm.export = function(params) {
|
||||
reportSvc.exportDistributionReport(params)
|
||||
.success(downloadSvc.success);
|
||||
}
|
||||
});
|
||||
};
|
||||
}
|
||||
]);
|
||||
})();
|
||||
Reference in New Issue
Block a user