Files
dss.web/client/app/directives/misc/tooltip.js
Fergal Moran d2c529bafe Screw you git!
2015-12-01 19:50:20 +00:00

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');
});
}
};
});