diff options
| author | Shpuld Shpludson <shp@cock.li> | 2019-10-29 06:37:23 +0000 |
|---|---|---|
| committer | Shpuld Shpludson <shp@cock.li> | 2019-10-29 06:37:23 +0000 |
| commit | c79da5c4565f664290aa43fa925f978eb2810a2d (patch) | |
| tree | f5331520871810507e4f6fe15a8bf455fcf7924d /src/main.js | |
| parent | 3a3db35985ea8e2bb6babc92fcd247fc86df0309 (diff) | |
| parent | 237d95b0f73d9d20df0b8c4668110ce09a5527de (diff) | |
Merge branch '599' into 'develop'
Fix "Posts get cut off when there is not enough space to display them at the bottom"
Closes #599
See merge request pleroma/pleroma-fe!863
Diffstat (limited to 'src/main.js')
| -rw-r--r-- | src/main.js | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/main.js b/src/main.js index 7923ffe8..a9db1cff 100644 --- a/src/main.js +++ b/src/main.js @@ -41,7 +41,13 @@ Vue.use(VueChatScroll) Vue.use(VueClickOutside) Vue.use(PortalVue) Vue.use(VBodyScrollLock) -Vue.use(VTooltip) +Vue.use(VTooltip, { + popover: { + defaultTrigger: 'hover click', + defaultContainer: false, + defaultOffset: 5 + } +}) const i18n = new VueI18n({ // By default, use the browser locale, we will update it if neccessary |
