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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2021-09-30 18:31:21 +0300
committerGitHub <noreply@github.com>2021-09-30 18:31:21 +0300
commiteea3d7d47d9753937058428e3c627cef193ee8a6 (patch)
tree26c8d682e9bd5eab9bb5a9bef182831c9bc2fc15 /apps/federatedfilesharing
parent05cfbf472cb658838ca32c4d08474ae5ba3174bf (diff)
parent3a36984f50476b19a471380665eaac01d92256ad (diff)
Merge pull request #28816 from nextcloud/fix/deprecated-toolip-methods
Migrate deprecated tooltip methods
Diffstat (limited to 'apps/federatedfilesharing')
-rw-r--r--apps/federatedfilesharing/js/settings-personal.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/federatedfilesharing/js/settings-personal.js b/apps/federatedfilesharing/js/settings-personal.js
index 6f01173807b..753e18daa65 100644
--- a/apps/federatedfilesharing/js/settings-personal.js
+++ b/apps/federatedfilesharing/js/settings-personal.js
@@ -31,13 +31,13 @@ window.addEventListener('DOMContentLoaded', function() {
var $input = $(e.trigger);
$input.tooltip('hide')
.attr('data-original-title', t('core', 'Copied!'))
- .tooltip('fixTitle')
+ .tooltip('_fixTitle')
.tooltip({placement: 'bottom', trigger: 'manual'})
.tooltip('show');
_.delay(function() {
$input.tooltip('hide')
.attr('data-original-title', t('core', 'Copy'))
- .tooltip('fixTitle');
+ .tooltip('_fixTitle');
}, 3000);
});
clipboard.on('error', function (e) {
@@ -53,13 +53,13 @@ window.addEventListener('DOMContentLoaded', function() {
$input.tooltip('hide')
.attr('data-original-title', actionMsg)
- .tooltip('fixTitle')
+ .tooltip('_fixTitle')
.tooltip({placement: 'bottom', trigger: 'manual'})
.tooltip('show');
_.delay(function () {
$input.tooltip('hide')
.attr('data-original-title', t('core', 'Copy'))
- .tooltip('fixTitle');
+ .tooltip('_fixTitle');
}, 3000);
});