🍏 (music) remove music for iOS

This commit is contained in:
2020-07-14 03:51:11 +02:00
parent 49e543bc2e
commit d35479f271
3 changed files with 6 additions and 8 deletions

View File

@@ -23,8 +23,6 @@ import {
onUnmounted
} from '@vue/composition-api'
const iOS = navigator.platform && /iPad|iPhone|iPod/.test(navigator.platform)
export default defineComponent({
name: 'ChilledMusic',
props: {
@@ -34,9 +32,6 @@ export default defineComponent({
}
},
setup(props, { emit }) {
if (iOS) {
return
}
const chilledcow = reactive<{ video: Plyr | null }>({
video: null
})