Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js/app
diff options
context:
space:
mode:
authorbinsky <timo@binsky.org>2021-03-12 02:58:06 +0300
committerbinsky <timo@binsky.org>2021-03-12 02:58:06 +0300
commit350a2cdc1231be6308ddf1c0fda4252fcbd956d0 (patch)
tree3676ca1c41bdc33d37e55d3390c3f5e74dcbd935 /js/app
parentbf0f5f00865f3c0ea4848948914af92c54f969a4 (diff)
fix deprecated tooltip('fixTitle') jquery call
Diffstat (limited to 'js/app')
-rw-r--r--js/app/directives/tooltip.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/app/directives/tooltip.js b/js/app/directives/tooltip.js
index c9c3ce77..c9fc6f59 100644
--- a/js/app/directives/tooltip.js
+++ b/js/app/directives/tooltip.js
@@ -41,7 +41,7 @@
if (scope.tooltip) {
jQuery(el).attr('title', scope.tooltip);
jQuery(el).tooltip();
- jQuery(el).attr('title', scope.tooltip).tooltip('fixTitle');
+ jQuery(el).attr('data-original-title', scope.tooltip);
jQuery('.tooltip-inner').text(scope.tooltip); // Dirty hack
if (jQuery(el).is(':visible')) {
//$(el).tooltip('show')
@@ -52,4 +52,4 @@
}
};
}]);
-}()); \ No newline at end of file
+}());