12 lines
260 B
JavaScript
12 lines
260 B
JavaScript
(function () {
|
|
global.dashModule
|
|
.directive('errorDialog', [errorDialogDirective]);
|
|
|
|
function errorDialogDirective() {
|
|
return {
|
|
restrict: 'E',
|
|
templateUrl: 'utils/html/errorDialogTemplate'
|
|
};
|
|
}
|
|
})();
|