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/theming
parent05cfbf472cb658838ca32c4d08474ae5ba3174bf (diff)
parent3a36984f50476b19a471380665eaac01d92256ad (diff)
Merge pull request #28816 from nextcloud/fix/deprecated-toolip-methods
Migrate deprecated tooltip methods
Diffstat (limited to 'apps/theming')
-rw-r--r--apps/theming/js/settings-admin.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/js/settings-admin.js b/apps/theming/js/settings-admin.js
index 6f76def6910..335492fdae2 100644
--- a/apps/theming/js/settings-admin.js
+++ b/apps/theming/js/settings-admin.js
@@ -163,7 +163,7 @@ window.addEventListener('DOMContentLoaded', function () {
} catch (error) {
$('#theming-name').attr('title', error);
$('#theming-name').tooltip({placement: 'top', trigger: 'manual'});
- $('#theming-name').tooltip('fixTitle');
+ $('#theming-name').tooltip('_fixTitle');
$('#theming-name').tooltip('show');
$('#theming-name').addClass('error');
}