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:
authorMichaIng <micha@dietpi.com>2021-09-13 17:44:08 +0300
committerMichaIng <micha@dietpi.com>2021-09-26 23:18:20 +0300
commit3a36984f50476b19a471380665eaac01d92256ad (patch)
treed1a2b4be9f3d92cd7f23d94a0671933e60d28908 /apps/theming/js
parent277eaf41e7d5c946ec42b119723e041c3abf52bc (diff)
Migrate deprecated toolip methods
With Bootstrap v4, the tooltip methods "fixTitle" and "destroy" have been removed. Only core/src/Polyfill/tooltip.js keeps them methods valid by translating them. Signed-off-by: MichaIng <micha@dietpi.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps/theming/js')
-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');
}