Files
InventoryTraker-Box/InventoryTraker.Web/js/utility/StatusMessage.js
T
2016-09-23 15:12:46 -04:00

19 lines
324 B
JavaScript

(function() {
'use strict';
window.app.directive('statusMessage',
function() {
return {
scope: {
message: "=",
severity: "=?"
},
templateUrl: '/utility/template/statusMessage.tmpl.cshtml',
controller: controller,
controllerAs: 'vm'
}
});
function controller($scope) {
}
})();