Skip to content

Instantly share code, notes, and snippets.

@MrMeison
Created March 15, 2020 16:24
Show Gist options
  • Save MrMeison/722faffb43cc209fec474f33647846d0 to your computer and use it in GitHub Desktop.
Save MrMeison/722faffb43cc209fec474f33647846d0 to your computer and use it in GitHub Desktop.
'use strict';
(function () {
var filterState = {
'housing-type': 'any',
'housing-rooms': 'any',
'housing-guests': 'any',
'housing-price': 'any',
'features': []
};
var reset = function() {
filterState = {
'housing-type': 'any',
'housing-rooms': 'any',
'housing-guests': 'any',
'housing-price': 'any',
'features': []
};
};
// ...
window.filter = {
//...
reset: reset
};
})();
// Использование
window.filter.reset();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment