mirror of
https://github.com/ansible/awx.git
synced 2026-01-21 22:48:02 -03:30
12 lines
260 B
JavaScript
12 lines
260 B
JavaScript
function atInputMessage (pathService) {
|
|
return {
|
|
restrict: 'E',
|
|
replace: true,
|
|
templateUrl: pathService.getPartialPath('components/input/message'),
|
|
};
|
|
}
|
|
|
|
atInputMessage.$inject = ['PathService'];
|
|
|
|
export default atInputMessage;
|