diff options
author | Mario <mario@mariovavti.com> | 2020-01-11 10:30:12 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-01-11 10:30:12 +0000 |
commit | f645c6f3a57bf5f53bbb2bde362b2447f725c977 (patch) | |
tree | 9b37650aad46296c5d98a55969348ebb4ee2d097 /library/cropperjs/test/js | |
parent | 4c1c6908165e5c4fb1b7238f66764f89faa2301a (diff) | |
download | volse-hubzilla-f645c6f3a57bf5f53bbb2bde362b2447f725c977.tar.gz volse-hubzilla-f645c6f3a57bf5f53bbb2bde362b2447f725c977.tar.bz2 volse-hubzilla-f645c6f3a57bf5f53bbb2bde362b2447f725c977.zip |
update cropperjs to the recent version
Diffstat (limited to 'library/cropperjs/test/js')
-rw-r--r-- | library/cropperjs/test/js/main.js | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/library/cropperjs/test/js/main.js b/library/cropperjs/test/js/main.js deleted file mode 100644 index 79fda799f..000000000 --- a/library/cropperjs/test/js/main.js +++ /dev/null @@ -1,74 +0,0 @@ -window.Util = { - isNumber: function (n) { - return typeof n === 'number' && !isNaN(n); - }, - isFunction: function (fn) { - return typeof fn === 'function'; - }, - hasClass: function (element, className) { - return element.classList.contains(className); - }, - getByClass: function (element, className) { - return element.getElementsByClassName ? - element.getElementsByClassName(className) : - element.querySelectorAll('.' + className); - }, - createImage: function (attrs) { - var container = document.createElement('div'); - var image = new Image(); - var attr; - - if (typeof attrs !== 'object') { - attrs = {}; - } - - if (!attrs.src) { - attrs.src = '../docs/images/picture.jpg'; - } - - for (attr in attrs) { - if (attrs.hasOwnProperty(attr)) { - image[attr] = attrs[attr]; - } - } - - container.className = 'container'; - container.appendChild(image); - document.body.appendChild(container); - - return image; - }, - dispatchEvent: function (element, type, data) { - var event; - - if (element.dispatchEvent) { - // Event and CustomEvent on IE9-11 are global objects, not constructors - if (typeof Event === 'function' && typeof CustomEvent === 'function') { - if (!data) { - event = new Event(type, { - bubbles: true, - cancelable: true - }); - } else { - event = new CustomEvent(type, { - detail: data, - bubbles: true, - cancelable: true - }); - } - } else if (!data) { - event = document.createEvent('Event'); - event.initEvent(type, true, true); - } else { - event = document.createEvent('CustomEvent'); - event.initCustomEvent(type, true, true, data); - } - - // IE9+ - return element.dispatchEvent(event); - } else if (element.fireEvent) { - // IE6-10 (native events only) - return element.fireEvent('on' + type); - } - } -}; |