Compare commits

..

No commits in common. "36b33124bcc670c42bd5ef8317d0e4cf6955ee20" and "ae4b7b6de0f6bd77020fef45768b918cc7279445" have entirely different histories.

4 changed files with 4 additions and 10 deletions

View file

@ -105,7 +105,7 @@ function switchTheme(e) {
document.addEventListener('DOMContentLoaded', () => {
const $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
if ($navbarBurgers.length > 0) {
$navbarBurgers.forEach( el => {
$navbarBurgers.forEach( el => {
el.addEventListener('click', () => {
const target = el.dataset.target;
const $target = document.getElementById(target);

View file

@ -46,4 +46,4 @@
@import './ajouter-un-album';
@import './collection';
@import './ma-collection-details';
@import './composants';
@import './composants';

View file

@ -23,12 +23,6 @@
background-color: var(--default-color);
}
&:nth-child(4n),
&:nth-child(4n-1)
{
background-color: var(--default-color);
}
&:first-child,
&:nth-child(2) {
border-top: 2px solid var(--border-color);

View file

@ -170,7 +170,7 @@
}
},
created() {
this.setTrackList();
this.setTrackList();
this.setIdentifiers();
window.addEventListener("keydown", this.changeImage);
@ -231,7 +231,7 @@
},
showGallery(event) {
const item = event.target.tagName === 'IMG' ? event.target.parentElement : event.target;
const {
index,
} = item.dataset;