ESLINT tests should pass now.

Added some changes to fix ESLINT issues
pull/2665/head
Yegor 5 years ago committed by GitHub
parent 460033823a
commit ef95d74ac5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 43
      apps/block_scout_web/assets/js/pages/layout.js

@ -9,39 +9,38 @@ $(document).click(function (event) {
})
$(document).ready(function () {
if (matchMedia) {
var mq = window.matchMedia("(max-width: 900px)");
mq.addListener(WidthChange);
WidthChange(mq);
var mq = window.matchMedia('(max-width: 900px)')
mq.addListener(WidthChange)
WidthChange(mq)
}
function WidthChange (mq) {
if (mq.matches) {
$("#checkIfSmall").removeClass("dropdown-menu");
$(".dropdown-item").removeClass("active");
$("#checkIfSmall1").removeClass("dropdown-menu");
$("#checkIfSmall2").removeClass("dropdown-menu");
$('#checkIfSmall').removeClass('dropdown-menu')
$('.dropdown-item').removeClass('active')
$('#checkIfSmall1').removeClass('dropdown-menu')
$('#checkIfSmall2').removeClass('dropdown-menu')
} else {
$("#checkIfSmall").addClass("dropdown-menu");
$("#checkIfSmall1").addClass("dropdown-menu");
$("#checkIfSmall2").addClass("dropdown-menu");
$('#checkIfSmall').addClass('dropdown-menu')
$('#checkIfSmall1').addClass('dropdown-menu')
$('#checkIfSmall2').addClass('dropdown-menu')
}
}
});
})
var div1 = document.getElementById("toggleImage1");
var div2 = document.getElementById("toggleImage2");
var div1 = document.getElementById('toggleImage1')
var div2 = document.getElementById('toggleImage2')
function switchVisible () {
if (!div1) return;
if (getComputedStyle(div1).display === "inline-block") {
div1.style.display = "none";
div2.style.display = "block";
if (!div1) return
if (getComputedStyle(div1).display === 'inline-block') {
div1.style.display = 'none'
div2.style.display = 'block'
} else {
div1.style.display = "inline-block";
div2.style.display = "none";
div1.style.display = 'inline-block'
div2.style.display = 'none'
}
}
document
.getElementById("toggleButton")
.addEventListener("click", switchVisible);
.getElementById('toggleButton')
.addEventListener('click', switchVisible)

Loading…
Cancel
Save