Skip to content

Commit

Permalink
Merge pull request #302 from clabs/dev
Browse files Browse the repository at this point in the history
minor fixes
  • Loading branch information
ethrgeist authored Dec 7, 2024
2 parents e5b885f + c8f6f8c commit c4aa40f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/rockon/bands/static/js/voting.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ const BandImages = Vue.defineComponent({
`,
mounted () {
const options = {
overlayOpacity: 0.4
overlayOpacity: 0.4,
history: false
}
const lightbox = new SimpleLightbox('.gallery a', options)
console.debug('BandImages mounted lightbox:', lightbox)
Expand Down Expand Up @@ -229,14 +230,14 @@ const TrackList = Vue.defineComponent({
<span class="badge text-bg-primary m-2" :key="no-vote" @click="handleShowBandsWithoutVote" style="cursor: pointer;">Unbewertete Bands</span>
<span class="badge text-bg-primary m-2" @click="handleShowStudentBands" style="cursor: pointer;">Schülerbands</span>
<span class="badge text-bg-primary m-2" @click="handleDeselectTrack" style="cursor: pointer;">Alle Bands</span>
<div class="form-check form-switch m-2">
<input class="form-check-input" type="checkbox" role="switch" :checked="showBandNoName" @change="handleFilterNoNameChange" />
<label class="form-check-label" >Bands ohne Namen anzeigen</label>
</div>
<div class="form-check form-switch m-2">
<input class="form-check-input" type="checkbox" role="switch" :checked="showIncompleteBids" @change="handleFilterIncompleteBids" />
<label class="form-check-label" >Unvollständige Bewerbungen anzeigen</label>
</div>
<div class="form-check form-switch m-2">
<input class="form-check-input" type="checkbox" role="switch" :checked="showBandNoName" @change="handleFilterNoNameChange" />
<label class="form-check-label" >Bands ohne Namen anzeigen</label>
</div>
<div class="form-check form-switch m-2">
<input class="form-check-input" type="checkbox" role="switch" :checked="showDeclinedBids" @change="handleFilterDeclinedeBids"/>
<label class="form-check-label" >Abgelehnte Bewerbungen anzeigen</label>
Expand Down

0 comments on commit c4aa40f

Please sign in to comment.