diff --git a/assets/ElementQueries.js b/assets/ElementQueries.js new file mode 100644 index 0000000..4fe4298 --- /dev/null +++ b/assets/ElementQueries.js @@ -0,0 +1,530 @@ +'use strict'; + +/** + * Copyright Marc J. Schmidt. See the LICENSE file at the top-level + * directory of this distribution and at + * https://github.com/marcj/css-element-queries/blob/master/LICENSE. + */ +(function (root, factory) { + if (typeof define === "function" && define.amd) { + define(['./ResizeSensor.js'], factory); + } else if (typeof exports === "object") { + module.exports = factory(require('./ResizeSensor.js')); + } else { + root.ElementQueries = factory(root.ResizeSensor); + root.ElementQueries.listen(); + } +}(typeof window !== 'undefined' ? window : this, function (ResizeSensor) { + + /** + * + * @type {Function} + * @constructor + */ + var ElementQueries = function () { + //