Fix audio playback
This commit is contained in:
parent
b8f5f5d6ef
commit
951d339904
|
@ -5,7 +5,7 @@ COPY package.json yarn.lock /app/
|
||||||
COPY src /app/src/
|
COPY src /app/src/
|
||||||
COPY scripts /app/scripts
|
COPY scripts /app/scripts
|
||||||
COPY public /app/public
|
COPY public /app/public
|
||||||
COPY vite.config.js index.html embed.html /app/
|
COPY vite.config.ts index.html embed.html /app/
|
||||||
|
|
||||||
RUN apk add --no-cache jq bash coreutils python3 build-base
|
RUN apk add --no-cache jq bash coreutils python3 build-base
|
||||||
RUN yarn install
|
RUN yarn install
|
||||||
|
|
|
@ -8,6 +8,7 @@ import axios from 'axios'
|
||||||
import usePlayer from '~/composables/audio/usePlayer'
|
import usePlayer from '~/composables/audio/usePlayer'
|
||||||
import useQueue from '~/composables/audio/useQueue'
|
import useQueue from '~/composables/audio/useQueue'
|
||||||
import { useCurrentElement } from '@vueuse/core'
|
import { useCurrentElement } from '@vueuse/core'
|
||||||
|
import jQuery from 'jquery'
|
||||||
|
|
||||||
export interface PlayOptionsProps {
|
export interface PlayOptionsProps {
|
||||||
isPlayable?: boolean
|
isPlayable?: boolean
|
||||||
|
|
|
@ -9,13 +9,6 @@ import type { ComponentPublicInstance } from '@vue/runtime-core'
|
||||||
|
|
||||||
export type FunctionRef = Element | ComponentPublicInstance | null
|
export type FunctionRef = Element | ComponentPublicInstance | null
|
||||||
|
|
||||||
declare global {
|
|
||||||
interface Window {
|
|
||||||
$: JQueryStatic
|
|
||||||
jQuery: JQueryStatic
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// App structure stuff
|
// App structure stuff
|
||||||
export interface InitModuleContext {
|
export interface InitModuleContext {
|
||||||
app: App
|
app: App
|
||||||
|
|
Loading…
Reference in New Issue