diff --git a/wp-content/plugins/fediembedi-master/.github/FUNDING.yml b/wp-content/plugins/fediembedi-master/.github/FUNDING.yml new file mode 100644 index 00000000..e9ea7ba2 --- /dev/null +++ b/wp-content/plugins/fediembedi-master/.github/FUNDING.yml @@ -0,0 +1,12 @@ +# These are supported funding model platforms + +github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] +patreon: # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +custom: https://paypal.me/MediaFormat diff --git a/wp-content/plugins/fediembedi-master/.gitignore b/wp-content/plugins/fediembedi-master/.gitignore new file mode 100644 index 00000000..3f0d495b --- /dev/null +++ b/wp-content/plugins/fediembedi-master/.gitignore @@ -0,0 +1,7 @@ +#ignore system files +.DS_Store + +#bootstrap slim +assets/bootstrap/* +!assets/bootstrap/css/bootstrap.min.css +!assets/bootstrap/css/bootstrap.min.css.map diff --git a/wp-content/plugins/fediembedi-master/assets/ElementQueries.js b/wp-content/plugins/fediembedi-master/assets/ElementQueries.js new file mode 100644 index 00000000..4fe4298a --- /dev/null +++ b/wp-content/plugins/fediembedi-master/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 () { + //