aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Borg <jakob@kastelo.net>2023-06-03 09:58:08 +0200
committerJakob Borg <jakob@kastelo.net>2023-06-06 09:06:36 +0200
commitbe5961f59b1a611befd47057fd2852dd310c61b8 (patch)
tree3dc3593fd809e68f81172324fc39edb5ca30b24b
parente136d11dce15bb268943c5334db88d3a9884f29f (diff)
downloadsyncthing-be5961f59b1a611befd47057fd2852dd310c61b8.tar.gz
syncthing-be5961f59b1a611befd47057fd2852dd310c61b8.zip
gui: Remove HTML support in tooltips
-rw-r--r--gui/default/syncthing/core/tooltipDirective.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/gui/default/syncthing/core/tooltipDirective.js b/gui/default/syncthing/core/tooltipDirective.js
index 4a79e763f..c21a396d8 100644
--- a/gui/default/syncthing/core/tooltipDirective.js
+++ b/gui/default/syncthing/core/tooltipDirective.js
@@ -3,9 +3,7 @@ angular.module('syncthing.core')
return {
restrict: 'A',
link: function (scope, element, attributes) {
- $(element).tooltip({
- html: 'true'
- });
+ $(element).tooltip();
}
};
});