aboutsummaryrefslogtreecommitdiffstats
path: root/library/cropperjs/test/js/main.js
blob: 79fda799feca7ce988f32b342bb492747d4c4c45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
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);
    }
  }
};