mirror of
https://github.com/ansible/awx.git
synced 2026-02-28 16:28:43 -03:30
14 lines
348 B
JavaScript
14 lines
348 B
JavaScript
/* jshint unused: vars */
|
|
export default
|
|
[ 'templateUrl',
|
|
function(templateUrl) {
|
|
return {
|
|
restrict: 'E',
|
|
scope: true,
|
|
templateUrl: templateUrl('dashboard/dashboard'),
|
|
link: function(scope, element, attrs) {
|
|
}
|
|
};
|
|
}
|
|
];
|