Add user management
This commit is contained in:
@@ -1,16 +1,15 @@
|
||||
(function() {
|
||||
"use strict";
|
||||
|
||||
window.app.directive('inventoryRemove', inventoryRemove);
|
||||
|
||||
function inventoryRemove() {
|
||||
return {
|
||||
scope: { "inventory": "=" },
|
||||
templateUrl: '/inventory/template/inventoryRemove.tmpl.cshtml',
|
||||
controller: controller,
|
||||
controllerAs: 'vm'
|
||||
}
|
||||
}
|
||||
window.app.directive('inventoryRemove',
|
||||
function() {
|
||||
return {
|
||||
scope: { "inventory": "=" },
|
||||
templateUrl: '/inventory/template/inventoryRemove.tmpl.cshtml',
|
||||
controller: controller,
|
||||
controllerAs: 'vm'
|
||||
}
|
||||
});
|
||||
|
||||
controller.$inject = ['$scope', 'inventorySvc'];
|
||||
function controller($scope, inventorySvc) {
|
||||
|
||||
Reference in New Issue
Block a user