Disable Fullscreen view when artist/album name is clicked. (#1315)
* Disable Fullscreen view when artist/album name is clicked. idk why this change didn't exist * Seperate dash from album name * Replace `$root.showSearch()` with `app.appRoute('search')` `$root.showSearch()` prevents going back to previous page from sidebar.
This commit is contained in:
parent
72b756cc27
commit
05c79cb991
2 changed files with 8 additions and 6 deletions
|
@ -7,11 +7,11 @@
|
|||
<input
|
||||
type="search"
|
||||
spellcheck="false"
|
||||
@click="$root.showSearch()"
|
||||
@click="app.appRoute('search');"
|
||||
@focus="$root.search.showHints = true"
|
||||
@blur="$root.setTimeout(()=>{$root.search.showHints = false}, 300)"
|
||||
v-on:keyup.enter="$root.searchQuery();$root.search.showHints = false"
|
||||
@change="$root.showSearch();"
|
||||
@change="app.appRoute('search');"
|
||||
@input="$root.getSearchHints()"
|
||||
:placeholder="$root.getLz('term.search') + '...'"
|
||||
v-model="$root.search.term"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue