changed triggers
This commit is contained in:
parent
1a4b3abd86
commit
20e7f17386
1 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,5 @@
|
||||||
<script type="text/x-template" id="cider-playlist">
|
<script type="text/x-template" id="cider-playlist">
|
||||||
<div class="content-inner playlist-page" :class="classes" v-if="data != [] && data.attributes != null"
|
<div class="content-inner playlist-page" :class="classes" v-if="data != [] && data.attributes != null"
|
||||||
@mouseleave="minClass(false)"
|
|
||||||
:style="{'--bgColor': (data.attributes.artwork != null && data.attributes.artwork['bgColor'] != null) ? ('#' + data.attributes.artwork.bgColor) : ''}">
|
:style="{'--bgColor': (data.attributes.artwork != null && data.attributes.artwork['bgColor'] != null) ? ('#' + data.attributes.artwork.bgColor) : ''}">
|
||||||
<template v-if="app.playlists.loadingState == 0">
|
<template v-if="app.playlists.loadingState == 0">
|
||||||
<div class="content-inner centered">
|
<div class="content-inner centered">
|
||||||
|
@ -9,6 +8,7 @@
|
||||||
</template>
|
</template>
|
||||||
<template v-if="app.playlists.loadingState == 1">
|
<template v-if="app.playlists.loadingState == 1">
|
||||||
<div class="playlist-display"
|
<div class="playlist-display"
|
||||||
|
@mouseover.self="minClass(false)"
|
||||||
:style="{
|
:style="{
|
||||||
'--bgColor': (data.attributes.artwork != null && data.attributes.artwork['bgColor'] != null) ? ('#' + data.attributes.artwork.bgColor) : '',
|
'--bgColor': (data.attributes.artwork != null && data.attributes.artwork['bgColor'] != null) ? ('#' + data.attributes.artwork.bgColor) : '',
|
||||||
'--textColor': (data.attributes.artwork != null && data.attributes.artwork['textColor1'] != null) ? ('#' + data.attributes.artwork.textColor1) : ''
|
'--textColor': (data.attributes.artwork != null && data.attributes.artwork['textColor1'] != null) ? ('#' + data.attributes.artwork.textColor1) : ''
|
||||||
|
@ -28,12 +28,12 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="col playlist-info">
|
<div class="col playlist-info">
|
||||||
<template v-if="!editorialNotesExpanded">
|
<template v-if="!editorialNotesExpanded">
|
||||||
<div @mouseover="minClass(false)">
|
<div>
|
||||||
<div class="playlist-name" @click="editPlaylistName()" v-show="!nameEditing">
|
<div class="playlist-name" @mouseover="minClass(false)" @click="editPlaylistName()" v-show="!nameEditing">
|
||||||
{{data.attributes ? (data.attributes.name ??
|
{{data.attributes ? (data.attributes.name ??
|
||||||
(data.attributes.title ?? '') ?? '') : ''}}
|
(data.attributes.title ?? '') ?? '') : ''}}
|
||||||
</div>
|
</div>
|
||||||
<div class="playlist-name" v-show="nameEditing"><input type="text"
|
<div class="playlist-name" @mouseover="minClass(false)" v-show="nameEditing"><input type="text"
|
||||||
spellcheck="false"
|
spellcheck="false"
|
||||||
class="nameEdit"
|
class="nameEdit"
|
||||||
v-model="data.attributes.name"
|
v-model="data.attributes.name"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue