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-03 09:58:08 +0200
commitf5e5af391a6583047c64ef8c51642003a79b75cf (patch)
tree75f992159f3232e097f3d5e4f4cee8691d383ae3
parent5a3ac86c3f8c1e73ac4eb6ca3495fb919be897c3 (diff)
downloadsyncthing-f5e5af391a6583047c64ef8c51642003a79b75cf.tar.gz
syncthing-f5e5af391a6583047c64ef8c51642003a79b75cf.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();
}
};
});