diff --git a/app/client/src/App.vue b/app/client/src/App.vue index 33ae2f6..e3e1675 100644 --- a/app/client/src/App.vue +++ b/app/client/src/App.vue @@ -27,8 +27,8 @@ permanent fixed app - mini-variant - expand-on-hover + :mini-variant='!this.$root.settings.sidebarOpen' + :expand-on-hover='!this.$root.settings.sidebarOpen' > @@ -127,6 +127,16 @@ {{$t('Downloads')}} + + + + mdi-import + mdi-check + + + {{$t('Importer')}} + + @@ -243,8 +253,7 @@ - - +
{ + //Volup + if (e.deltaY < 0) { + if (this.volume + 0.05 > 1) + this.volume = 1; + else + this.volume += 0.05; + } else { + //Voldown + if (this.volume - 0.05 < 0) + this.volume = 0; + else + this.volume -= 0.05; + } + }); + //onClick for footer this.$refs.footer.addEventListener('click', () => { if (this.$root.track) this.showPlayer = true; diff --git a/app/client/src/components/SmartTrackList.vue b/app/client/src/components/SmartTrackList.vue index 391454a..e6ad5a0 100644 --- a/app/client/src/components/SmartTrackList.vue +++ b/app/client/src/components/SmartTrackList.vue @@ -1,11 +1,11 @@