Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
701f0f5e
Commit
701f0f5e
authored
Nov 05, 2018
by
Clement Ho
Committed by
Filipa Lacerda
Nov 05, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove gitlab-ui's tooltip from global
parent
3429d357
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
18 additions
and
4 deletions
+18
-4
app/assets/javascripts/commons/gitlab_ui.js
app/assets/javascripts/commons/gitlab_ui.js
+1
-3
app/assets/javascripts/diffs/components/diff_gutter_avatars.vue
...sets/javascripts/diffs/components/diff_gutter_avatars.vue
+4
-0
app/assets/javascripts/set_status_modal/set_status_modal_wrapper.vue
...javascripts/set_status_modal/set_status_modal_wrapper.vue
+4
-1
app/assets/javascripts/vue_shared/components/gl_countdown.vue
...assets/javascripts/vue_shared/components/gl_countdown.vue
+4
-0
changelogs/unreleased/gl-ui-tooltip.yml
changelogs/unreleased/gl-ui-tooltip.yml
+5
-0
No files found.
app/assets/javascripts/commons/gitlab_ui.js
View file @
701f0f5e
import
Vue
from
'
vue
'
;
import
{
GlLoadingIcon
,
GlTooltipDirective
}
from
'
@gitlab-org/gitlab-ui
'
;
import
{
GlLoadingIcon
}
from
'
@gitlab-org/gitlab-ui
'
;
Vue
.
component
(
'
gl-loading-icon
'
,
GlLoadingIcon
);
Vue
.
directive
(
'
gl-tooltip
'
,
GlTooltipDirective
);
app/assets/javascripts/diffs/components/diff_gutter_avatars.vue
View file @
701f0f5e
...
...
@@ -3,6 +3,7 @@ import { mapActions } from 'vuex';
import
Icon
from
'
~/vue_shared/components/icon.vue
'
;
import
{
pluralize
,
truncate
}
from
'
~/lib/utils/text_utility
'
;
import
UserAvatarImage
from
'
~/vue_shared/components/user_avatar/user_avatar_image.vue
'
;
import
{
GlTooltipDirective
}
from
'
@gitlab-org/gitlab-ui
'
;
import
{
COUNT_OF_AVATARS_IN_GUTTER
,
LENGTH_OF_AVATAR_TOOLTIP
}
from
'
../constants
'
;
export
default
{
...
...
@@ -10,6 +11,9 @@ export default {
Icon
,
UserAvatarImage
,
},
directives
:
{
GlTooltip
:
GlTooltipDirective
,
},
props
:
{
discussions
:
{
type
:
Array
,
...
...
app/assets/javascripts/set_status_modal/set_status_modal_wrapper.vue
View file @
701f0f5e
...
...
@@ -5,7 +5,7 @@ import Icon from '~/vue_shared/components/icon.vue';
import
GfmAutoComplete
from
'
~/gfm_auto_complete
'
;
import
{
__
,
s__
}
from
'
~/locale
'
;
import
Api
from
'
~/api
'
;
import
{
GlModal
}
from
'
@gitlab-org/gitlab-ui
'
;
import
{
GlModal
,
GlTooltipDirective
}
from
'
@gitlab-org/gitlab-ui
'
;
import
eventHub
from
'
./event_hub
'
;
import
EmojiMenuInModal
from
'
./emoji_menu_in_modal
'
;
...
...
@@ -16,6 +16,9 @@ export default {
Icon
,
GlModal
,
},
directives
:
{
GlTooltip
:
GlTooltipDirective
,
},
props
:
{
currentEmoji
:
{
type
:
String
,
...
...
app/assets/javascripts/vue_shared/components/gl_countdown.vue
View file @
701f0f5e
<
script
>
import
{
calculateRemainingMilliseconds
,
formatTime
}
from
'
~/lib/utils/datetime_utility
'
;
import
{
GlTooltipDirective
}
from
'
@gitlab-org/gitlab-ui
'
;
/**
* Counts down to a given end date.
*/
export
default
{
directives
:
{
GlTooltip
:
GlTooltipDirective
,
},
props
:
{
endDateString
:
{
type
:
String
,
...
...
changelogs/unreleased/gl-ui-tooltip.yml
0 → 100644
View file @
701f0f5e
---
title
:
Remove gitlab-ui's tooltip from global
merge_request
:
author
:
type
:
performance
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment