mirror of
https://github.com/koel/koel
synced 2025-02-16 13:28:32 +00:00
Prevent defaults
This commit is contained in:
parent
fc325e5262
commit
ccaa49fc84
2 changed files with 2 additions and 2 deletions
|
@ -49,7 +49,7 @@
|
|||
<song-list :items="album.songs" :selected-songs.sync="selectedSongs" type="album"></song-list>
|
||||
|
||||
<section class="info-wrapper" v-if="sharedState.useLastfm && info.showing">
|
||||
<a href="#" class="close" @click="info.showing = false"><i class="fa fa-times"></i></a>
|
||||
<a href="#" class="close" @click.prevent="info.showing = false"><i class="fa fa-times"></i></a>
|
||||
<div class="inner">
|
||||
<div class="loading" v-show="info.loading">
|
||||
<sound-bar></sound-bar>
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
<song-list :items="artist.songs" :selected-songs.sync="selectedSongs" type="artist"></song-list>
|
||||
|
||||
<section class="info-wrapper" v-if="sharedState.useLastfm && info.showing">
|
||||
<a href="#" class="close" @click="info.showing = false"><i class="fa fa-times"></i></a>
|
||||
<a href="#" class="close" @click.prevent="info.showing = false"><i class="fa fa-times"></i></a>
|
||||
<div class="inner">
|
||||
<div class="loading" v-show="info.loading">
|
||||
<sound-bar></sound-bar>
|
||||
|
|
Loading…
Add table
Reference in a new issue