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:
authorSimon Knox <simon@gitlab.com>2018-09-11 00:44:44 +0300
committerMike Greiling <mike@pixelcog.com>2018-09-11 00:44:44 +0300
commita2f03fdc96bed7084ad620f635ddc3705684fbc7 (patch)
tree99965b0b2dd2c68bb75cfd2153c0b9c123c5a9c4 /app/assets/javascripts/commons
parentebd8931e2bb4c81e65bbfa2045831387ebea45ea (diff)
add tooltip directive from gitlab-ui
Diffstat (limited to 'app/assets/javascripts/commons')
-rw-r--r--app/assets/javascripts/commons/gitlab_ui.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/assets/javascripts/commons/gitlab_ui.js b/app/assets/javascripts/commons/gitlab_ui.js
index ee274058e0f..14c2db24205 100644
--- a/app/assets/javascripts/commons/gitlab_ui.js
+++ b/app/assets/javascripts/commons/gitlab_ui.js
@@ -3,8 +3,10 @@ import progressBar from '@gitlab-org/gitlab-ui/dist/components/base/progress_bar
import modal from '@gitlab-org/gitlab-ui/dist/components/base/modal';
import dModal from '@gitlab-org/gitlab-ui/dist/directives/modal';
+import dTooltip from '@gitlab-org/gitlab-ui/dist/directives/tooltip';
Vue.component('gl-progress-bar', progressBar);
Vue.component('gl-ui-modal', modal);
Vue.directive('gl-modal', dModal);
+Vue.directive('gl-tooltip', dTooltip);