mirror of
https://github.com/fergalmoran/dss.web.git
synced 2026-02-16 04:55:11 +00:00
15 lines
408 B
JavaScript
Executable File
15 lines
408 B
JavaScript
Executable File
'use strict';
|
|
angular.module('dssWebApp')
|
|
.directive('tooltip', function () {
|
|
return {
|
|
restrict: 'A',
|
|
link: function (scope, element, attrs) {
|
|
$(element).hover(function () {
|
|
$(element).tooltip('show');
|
|
}, function () {
|
|
$(element).tooltip('hide');
|
|
});
|
|
}
|
|
};
|
|
});
|