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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Ho <ClemMakesApps@gmail.com>2018-04-17 19:34:00 +0300
committerClement Ho <ClemMakesApps@gmail.com>2018-04-17 19:34:00 +0300
commit909f1c933f5f5a23259f1545c70d61e5858e5aea (patch)
tree3524f10ce6f9d6622badb3eac408226e7103562c /app/assets/javascripts/commons
parent4e404b3b404d33351899ec1990e38f824a0f1690 (diff)
Remove duplicate tooltip instantiation
Diffstat (limited to 'app/assets/javascripts/commons')
-rw-r--r--app/assets/javascripts/commons/bootstrap.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/app/assets/javascripts/commons/bootstrap.js b/app/assets/javascripts/commons/bootstrap.js
index 114a3cb872a..3e90a4bc98d 100644
--- a/app/assets/javascripts/commons/bootstrap.js
+++ b/app/assets/javascripts/commons/bootstrap.js
@@ -10,6 +10,3 @@ $.fn.extend({
disable() { return $(this).prop('disabled', true).addClass('disabled'); },
enable() { return $(this).prop('disabled', false).removeClass('disabled'); },
});
-
-// Enable Bootstrap tooltips
-$('[data-toggle="tooltip"]').tooltip();