Skip to content

Commit b0f056f

Browse files
committed
remove non-general default value for placement
1 parent 45981f5 commit b0f056f

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

web_src/js/features/contextpopup.js

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ export function initContextPopups() {
3030

3131
createTippy(this, {
3232
content: el,
33+
placement: 'top-start',
3334
interactive: true,
3435
interactiveBorder: 5,
3536
onShow: () => {

web_src/js/modules/tippy.js

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import tippy from 'tippy.js';
33
export function createTippy(target, opts = {}) {
44
const instance = tippy(target, {
55
appendTo: document.body,
6-
placement: 'top-start',
76
animation: false,
87
allowHTML: false,
98
hideOnClick: false,

0 commit comments

Comments
 (0)