simplify player
This commit is contained in:
parent
60a2ece852
commit
82fe676092
|
@ -13,10 +13,8 @@
|
||||||
'play',
|
'play',
|
||||||
'progress',
|
'progress',
|
||||||
'current-time',
|
'current-time',
|
||||||
'duration',
|
|
||||||
'mute',
|
'mute',
|
||||||
'volume',
|
'volume',
|
||||||
'settings',
|
|
||||||
'download',
|
'download',
|
||||||
],
|
],
|
||||||
disableContextMenu: false,
|
disableContextMenu: false,
|
||||||
|
|
|
@ -13,10 +13,8 @@
|
||||||
'play',
|
'play',
|
||||||
'progress',
|
'progress',
|
||||||
'current-time',
|
'current-time',
|
||||||
'duration',
|
|
||||||
'mute',
|
'mute',
|
||||||
'volume',
|
'volume',
|
||||||
'settings',
|
|
||||||
'pip',
|
'pip',
|
||||||
'download',
|
'download',
|
||||||
'fullscreen'
|
'fullscreen'
|
||||||
|
|
|
@ -89,7 +89,7 @@
|
||||||
<div v-if="user.pinnedNotes.length > 0" class="_gap">
|
<div v-if="user.pinnedNotes.length > 0" class="_gap">
|
||||||
<XNote v-for="note in user.pinnedNotes" :key="note.id" class="note _block" :note="note" :pinned="true"/>
|
<XNote v-for="note in user.pinnedNotes" :key="note.id" class="note _block" :note="note" :pinned="true"/>
|
||||||
</div>
|
</div>
|
||||||
<MkInfo v-else-if="$i && $i.id === user.id">{{ i18n.ts.userPagePinTip }}</MkInfo>
|
<MkInfo v-else-if="$i && $i.id === user.id" style="margin: 12px 0;">{{ i18n.ts.userPagePinTip }}</MkInfo>
|
||||||
<template v-if="narrow">
|
<template v-if="narrow">
|
||||||
<XPhotos :key="user.id" :user="user"/>
|
<XPhotos :key="user.id" :user="user"/>
|
||||||
<XActivity :key="user.id" :user="user" style="margin-top: var(--margin);"/>
|
<XActivity :key="user.id" :user="user" style="margin-top: var(--margin);"/>
|
||||||
|
|
Loading…
Reference in New Issue