blob: 2c9b109c31195c44d2b32c6306fae5afb837fa15 [file] [log] [blame]
Iftekharul Islama1d238f2018-02-26 12:29:45 -06001window.angular && (function (angular) {
2 'use strict';
3
4 angular
5 .module('app.common.directives')
6 .directive('errors', ['APIUtils', function (APIUtils) {
7 return {
8 'restrict': 'E',
9 'template': require('./errors.html'),
10 'scope': {
11 'path': '='
12 },
13 'controller': ['$scope','dataService', function($scope, dataService){
14 $scope.dataService = dataService;
15 }]
16 };
17 }]);
18})(window.angular);