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:
Diffstat (limited to 'app/assets/javascripts/mr_tabs_popover/components/popover.vue')
-rw-r--r--app/assets/javascripts/mr_tabs_popover/components/popover.vue69
1 files changed, 0 insertions, 69 deletions
diff --git a/app/assets/javascripts/mr_tabs_popover/components/popover.vue b/app/assets/javascripts/mr_tabs_popover/components/popover.vue
deleted file mode 100644
index 30455709149..00000000000
--- a/app/assets/javascripts/mr_tabs_popover/components/popover.vue
+++ /dev/null
@@ -1,69 +0,0 @@
-<script>
-import { GlPopover, GlDeprecatedButton, GlLink } from '@gitlab/ui';
-import Icon from '~/vue_shared/components/icon.vue';
-import axios from '~/lib/utils/axios_utils';
-
-export default {
- components: {
- GlPopover,
- GlDeprecatedButton,
- GlLink,
- Icon,
- },
- props: {
- dismissEndpoint: {
- type: String,
- required: true,
- },
- featureId: {
- type: String,
- required: true,
- },
- },
- data() {
- return {
- showPopover: false,
- };
- },
- mounted() {
- setTimeout(() => {
- this.showPopover = true;
- }, 2000);
- },
- methods: {
- onDismiss() {
- this.showPopover = false;
-
- axios.post(this.dismissEndpoint, {
- feature_name: this.featureId,
- });
- },
- },
-};
-</script>
-
-<template>
- <gl-popover target="#diffs-tab" placement="bottom" :show="showPopover">
- <p class="mb-2">
- {{
- __(
- 'Now you can access the merge request navigation tabs at the top, where they’re easier to find.',
- )
- }}
- </p>
- <p>
- <gl-link href="https://gitlab.com/gitlab-org/gitlab/issues/36125" target="_blank">
- {{ __('More information and share feedback') }}
- <icon name="external-link" :size="10" />
- </gl-link>
- </p>
- <gl-deprecated-button
- variant="primary"
- size="sm"
- data-qa-selector="dismiss_popover_button"
- @click="onDismiss"
- >
- {{ __('Got it') }}
- </gl-deprecated-button>
- </gl-popover>
-</template>