9 lines
314 B
JavaScript
9 lines
314 B
JavaScript
"use strict";
|
|
$(window).bind("resize", function () {
|
|
console.log($(this).width())
|
|
if ($(this).width() < 1024) {
|
|
$('.page-body-wrapper').removeClass('sidebar-icon');
|
|
} else {
|
|
$('.page-body-wrapper').addClass('sidebar-icon')
|
|
}
|
|
}).trigger('resize'); |