community-app/app/scripts/controllers/main/ViewMakerCheckerTaskController.js
2014-03-02 04:09:27 -08:00

13 lines
485 B
JavaScript

(function (module) {
mifosX.controllers = _.extend(module, {
ViewMakerCheckerTaskController: function (scope, routeParams) {
scope.commandId = routeParams.commandId;
}
});
mifosX.ng.application.controller('ViewMakerCheckerTaskController', ['$scope', '$routeParams', mifosX.controllers.ViewMakerCheckerTaskController]).run(function ($log) {
$log.info("ViewMakerCheckerTaskController initialized");
});
}(mifosX.controllers || {}));