1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 16:51:11 +03:00

Use tooltip plugin for title attributes

This commit is contained in:
Joe Fiorini 2015-05-13 13:35:43 -04:00
parent 319a7c3a3a
commit 83932ae9e5
2 changed files with 9 additions and 1 deletions

View File

@ -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);

View File

@ -0,0 +1,6 @@
export default function() {
return function(scope, element, attrs) {
element.tooltip();
};
}