feat: remove keepInBounds

This commit is contained in:
Philipp Kühn
2021-04-16 10:46:50 +02:00
parent 9335858392
commit d7282f168b
5 changed files with 2 additions and 18 deletions

View File

@@ -9,11 +9,6 @@ export const BubbleMenu = Vue.extend({
type: Object as PropType<BubbleMenuPluginProps['editor']>,
required: true,
},
keepInBounds: {
type: Boolean as PropType<BubbleMenuPluginProps['keepInBounds']>,
default: true,
},
},
watch: {
@@ -28,7 +23,6 @@ export const BubbleMenu = Vue.extend({
editor.registerPlugin(BubbleMenuPlugin({
editor,
element: this.$el as HTMLElement,
keepInBounds: this.keepInBounds,
}))
})
},