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:
Diffstat (limited to 'apps/federatedfilesharing/js')
-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);
});