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
diff options
context:
space:
mode:
-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
+}());