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