12 lines
298 B
JavaScript
12 lines
298 B
JavaScript
angular.module('syncthing.core')
|
|
.directive('tooltip', function () {
|
|
return {
|
|
restrict: 'A',
|
|
link: function (scope, element, attributes) {
|
|
$(element).tooltip({
|
|
html: 'true'
|
|
});
|
|
}
|
|
};
|
|
});
|