syncthing/gui/default/syncthing/core/tooltipDirective.js

10 lines
246 B
JavaScript

angular.module('syncthing.core')
.directive('tooltip', function () {
return {
restrict: 'A',
link: function (scope, element, attributes) {
$(element).tooltip();
}
};
});