blob: 8123694730667902c123e17e95c00f6bb9e128bd [file] [log] [blame]
window.angular && (function(angular) {
'use strict';
angular
.module('app.common.directives')
.directive('errors', ['APIUtils', function(APIUtils) {
return {
'restrict': 'E',
'template': require('./errors.html'),
'scope': {
'path': '='
},
'controller': ['$scope', 'dataService', function($scope, dataService) {
$scope.dataService = dataService;
}]
};
}]);
})(window.angular);