mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-29 14:43:04 +00:00
sponsorblock display fix
This commit is contained in:
parent
36aa435749
commit
c1870df54e
5 changed files with 4 additions and 26 deletions
|
@ -304,10 +304,6 @@ export default {
|
||||||
type: Object,
|
type: Object,
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
videoid: {
|
|
||||||
type: String,
|
|
||||||
required: true,
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
duration: {
|
duration: {
|
||||||
type: Object,
|
type: Number,
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
seeking: {
|
seeking: {
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
<v-progress-linear
|
<v-progress-linear
|
||||||
v-for="block in blocks"
|
v-for="block in blocks"
|
||||||
:key="block.UUID"
|
:key="block.UUID"
|
||||||
:buffer-value="(block.segment[1] / video.duration) * 100"
|
:buffer-value="(block.segment[1] / duration) * 100"
|
||||||
:value="(block.segment[0] / video.duration) * 100"
|
:value="(block.segment[0] / duration) * 100"
|
||||||
style="
|
style="
|
||||||
position: absolute;
|
position: absolute;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
|
@ -34,7 +34,7 @@ export default {
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
duration: {
|
duration: {
|
||||||
type: Object,
|
type: Number,
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
seeking: {
|
seeking: {
|
||||||
|
|
|
@ -8,7 +8,6 @@
|
||||||
ref="player"
|
ref="player"
|
||||||
:video="video"
|
:video="video"
|
||||||
:sources="sources"
|
:sources="sources"
|
||||||
:videoid="$route.query.v"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="deploymentTargetDropDown">
|
|
||||||
<runningDeviceTargetSelectedWithDropDown>
|
|
||||||
<Target>
|
|
||||||
<type value="RUNNING_DEVICE_TARGET" />
|
|
||||||
<deviceKey>
|
|
||||||
<Key>
|
|
||||||
<type value="SERIAL_NUMBER" />
|
|
||||||
<value value="adb-a3727009-qqx3Xy._adb-tls-connect._tcp." />
|
|
||||||
</Key>
|
|
||||||
</deviceKey>
|
|
||||||
</Target>
|
|
||||||
</runningDeviceTargetSelectedWithDropDown>
|
|
||||||
<timeTargetWasSelectedWithDropDown value="2022-06-09T16:47:50.856340Z" />
|
|
||||||
</component>
|
|
||||||
</project>
|
|
Loading…
Reference in a new issue