remove edgeScrolling prop/flag (since it's limited to fullscreen)

This commit is contained in:
Tomáš Mládek 2021-01-10 16:29:51 +01:00
parent b3212c6c6a
commit 2305ae1a82
2 changed files with 36 additions and 39 deletions

View file

@ -1,5 +1,5 @@
<template>
<SVGContent id="root" url="content/intro.svg" edge-scrolling @set-background="setBackground"/>
<SVGContent id="root" url="content/intro.svg" @set-background="setBackground"/>
</template>
<script lang="ts">

View file

@ -18,8 +18,7 @@ export default defineComponent({
url: {
type: String,
required: true
},
edgeScrolling: Boolean
}
},
setup(props, {emit}) {
const root = ref(null);
@ -58,7 +57,6 @@ export default defineComponent({
panzoom.value = pz;
// Edge scrolling
if (props.edgeScrolling) {
const MOVE_EDGE = 75;
const MAX_SPEED = 20;
let edgeScrollInterval: number | undefined;
@ -97,7 +95,6 @@ export default defineComponent({
}, 1000 / 60);
}
});
}
// Anchors
anchors.value = processAnchors(svg);