Authored by OF1706

autoMod

... ... @@ -989,6 +989,10 @@ function searchSuggestHistory() {
$(function() {
var windowWidth = document.documentElement.clientWidth;
if (windowWidth <= 1440) {
$('.code-down-box').hide();
}
$(window).resize(function() {
var innerWindowWidth = window.innerWidth;
... ...
... ... @@ -1511,7 +1511,7 @@
}
}
@media screen and (max-width: 1280px) {
@media screen and (max-width: 1440px) {
.code-down-box {
display: none;
}
... ...