|
@@ -3218,7 +3218,8 @@ window.Modernizr = function(n, e, t) {
|
|
|
var hotList = $('#hotListWrap')[0];
|
|
|
hotList.classList.remove('hotListActive');
|
|
|
$('#hotListContent ul .active').removeClass('active');
|
|
|
- $('#hotList')[0].classList.remove('active')
|
|
|
+ if($('#hotList')&&$('#hotList')[0]) $('#hotList')[0].classList.remove('active')
|
|
|
+
|
|
|
}
|
|
|
,
|
|
|
n.prototype.onTouchMove = function(e) {
|
|
@@ -7442,7 +7443,8 @@ window.Modernizr = function(n, e, t) {
|
|
|
var hotList = $('#hotListWrap')[0];
|
|
|
hotList.classList.remove('hotListActive');
|
|
|
$('#hotListContent ul .active').removeClass('active');
|
|
|
- $('#hotList')[0].classList.remove('active')
|
|
|
+ if($('#hotList')&&$('#hotList')[0]) $('#hotList')[0].classList.remove('active')
|
|
|
+
|
|
|
})
|
|
|
}
|
|
|
|