diff options
author | mrjive <mrjive@mrjive.it> | 2018-01-24 18:30:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-24 18:30:59 +0100 |
commit | f560a3c98fc7cf4de7d86bd7f074c9995b3d240a (patch) | |
tree | 7cf16324e513afcf0446e19a0db39ec2ece21672 /library/cropperjs/test/js/main.js | |
parent | 131baa9f4584b74ab76328d776c0bb5ce603da7d (diff) | |
parent | add9890754780c886188504647b3058c4cc146c1 (diff) | |
download | volse-hubzilla-f560a3c98fc7cf4de7d86bd7f074c9995b3d240a.tar.gz volse-hubzilla-f560a3c98fc7cf4de7d86bd7f074c9995b3d240a.tar.bz2 volse-hubzilla-f560a3c98fc7cf4de7d86bd7f074c9995b3d240a.zip |
Merge pull request #11 from redmatrix/dev
Dev
Diffstat (limited to 'library/cropperjs/test/js/main.js')
-rw-r--r-- | library/cropperjs/test/js/main.js | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/library/cropperjs/test/js/main.js b/library/cropperjs/test/js/main.js new file mode 100644 index 000000000..79fda799f --- /dev/null +++ b/library/cropperjs/test/js/main.js @@ -0,0 +1,74 @@ +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); + } + } +}; |