Initial v3.3.6

This commit is contained in:
2020-04-10 08:15:15 -04:00
commit acd5401790
50 changed files with 7832 additions and 0 deletions

13
src/module-definitions.js Normal file
View File

@@ -0,0 +1,13 @@
/* global mixitupMultifilter */
if (typeof exports === 'object' && typeof module === 'object') {
module.exports = mixitupMultifilter;
} else if (typeof define === 'function' && define.amd) {
define(function() {
return mixitupMultifilter;
});
} else if (window.mixitup && typeof window.mixitup === 'function') {
mixitupMultifilter(window.mixitup);
} else {
throw new Error('[MixItUp MultiFilter] MixItUp core not found');
}