]> source.dussan.org Git - rspamd.git/commitdiff
[WebUI] Disable bootstrap tooltips 3803/head
authormoisseev <moiseev@mezonplus.ru>
Tue, 22 Jun 2021 17:53:44 +0000 (20:53 +0300)
committermoisseev <moiseev@mezonplus.ru>
Tue, 22 Jun 2021 17:53:44 +0000 (20:53 +0300)
that are too difficult to handle properly for dynamic HTML content.

interface/js/app/rspamd.js

index a99cbd4fb1b37579aef7ee876486dd96e7b87fcb..171812a0c50b4743d72a63fcce3c64ab938dddc2 100644 (file)
@@ -436,7 +436,6 @@ function ($, D3pie, visibility, NProgress, stickyTabs, tab_stat, tab_graph, tab_
             }
 
             $("#settings").popover({
-                title: "WebUI settings",
                 container: "body",
                 placement: "bottom",
                 html: true,
@@ -445,6 +444,9 @@ function ($, D3pie, visibility, NProgress, stickyTabs, tab_stat, tab_graph, tab_
                     // Using .clone() has the side-effect of producing elements with duplicate id attributes.
                     return $("#settings-popover").clone();
                 }
+            // Restore the tooltip of the element that the popover is attached to.
+            }).attr("title", function () {
+                return $(this).attr("data-original-title");
             });
             $("#settings").on("click", function (e) {
                 e.preventDefault();
@@ -508,12 +510,6 @@ function ($, D3pie, visibility, NProgress, stickyTabs, tab_stat, tab_graph, tab_
             tabClick("#" + $("#navBar > ul > .nav-item > .nav-link.active").attr("id"));
         });
 
-        $("body").tooltip({
-            selector: ".symbol-default abbr[title]",
-            placement: "left",
-            html: true
-        });
-
         // Radio buttons
         $(document).on("click", "input:radio[name=\"clusterName\"]", function () {
             if (!this.disabled) {