回答編集履歴
1
誤字の修正
test
CHANGED
@@ -8,9 +8,9 @@
|
|
8
8
|
|
9
9
|
const mediaQuery = window.matchMedia('(min-width: 768px)')
|
10
10
|
|
11
|
-
function checkBreakPoint(
|
11
|
+
function checkBreakPoint(e) {
|
12
12
|
|
13
|
-
if (
|
13
|
+
if (e.matches) {
|
14
14
|
|
15
15
|
$('.tab_box').slick('unslick');
|
16
16
|
|