Вот я сделал кусок кода, выдает ошибку где console.log(.params) - будто undefined
Вот я написал что:
$.Enquire = ({
MOBILE: "screen and (max-width:480px)",
TABLET: "screen and (max-width: 992px)",
DESKTOP: "",
params: ["Nav"],
init: function(){
console.log('Eq init');
enquire.register(this.TABLET, {
deferSetup: true,
setup: function () {
},
match: function () {
console.log('match');
console.log($.Enquire.params);
$.Enquire.params.forEach(function(v){$[v].begin()});
},
unmatch: function () {
console.log('UNmatch');
$.Enquire.params.forEach(function(v){$[v].destroy()});
}
});
}
}).init();