Files
awx/awx/ui/static/js/dashboard/dashboard.directive.js
2015-07-09 12:53:03 -04:00

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) {
}
};
}
];