mirror of
https://github.com/ansible/awx.git
synced 2026-02-21 05:00:07 -03:30
Use tooltip plugin for title attributes
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
import listGenerator from './list-generator/main';
|
||||
import title from './title.directive';
|
||||
|
||||
export default
|
||||
angular.module('shared', [listGenerator.name]);
|
||||
angular.module('shared', [listGenerator.name])
|
||||
.directive('title', title);
|
||||
|
||||
6
awx/ui/static/js/shared/title.directive.js
Normal file
6
awx/ui/static/js/shared/title.directive.js
Normal file
@@ -0,0 +1,6 @@
|
||||
export default function() {
|
||||
return function(scope, element, attrs) {
|
||||
element.tooltip();
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user