remove pip

This commit is contained in:
ThatOneCalculator 2022-07-13 23:03:06 -07:00
parent b17fb633ff
commit 82dca831a4
1 changed files with 1 additions and 10 deletions

View File

@ -31,7 +31,6 @@ import { ref, onMounted } from 'vue';
import * as misskey from 'misskey-js';
import 'vlitejs/dist/vlite.css';
import Vlitejs from 'vlitejs';
import VlitejsPip from 'vlitejs/dist/plugins/pip';
import { defaultStore } from '@/store';
const props = defineProps<{
@ -39,20 +38,12 @@ const props = defineProps<{
}>();
const videoEl = $ref<HTMLVideoElement | null>();
try {
Vlitejs.registerPlugin('pip', VlitejsPip);
}
catch (err) {
console.error('Pip plugin is already registered');
}
const playerInstance = ref();
onMounted(() => {
if (videoEl) {
playerInstance.value = new Vlitejs(videoEl, {
plugins: ['pip'],
});
playerInstance.value = new Vlitejs('#player');
}
});