Welcome to mirror list, hosted at ThFree Co, Russian Federation.

modals.js « js - github.com/twbs/ratchet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db4f5bc053e179fbd957720ee6bc19c9bdb2d1eb (plain)
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
/* ========================================================================
 * Ratchet: modals.js v2.0.2
 * http://goratchet.com/components#modals
 * ========================================================================
 * Copyright 2015 Connor Sears
 * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
 * ======================================================================== */

!(function () {
  'use strict';

  var eventModalOpen = new CustomEvent('modalOpen', {
    bubbles: true,
    cancelable: true
  });
  var eventModalClose = new CustomEvent('modalClose', {
    bubbles: true,
    cancelable: true
  });
  var findModals = function (target) {
    var i;
    var modals = document.querySelectorAll('a');

    for (; target && target !== document; target = target.parentNode) {
      for (i = modals.length; i--;) {
        if (modals[i] === target) {
          return target;
        }
      }
    }
  };

  var getModal = function (event) {
    var modalToggle = findModals(event.target);
    if (modalToggle && modalToggle.hash) {
      return document.querySelector(modalToggle.hash);
    }
  };

  window.addEventListener('touchend', function (event) {
    var modal = getModal(event);
    if (modal && modal.classList.contains('modal')) {
      var eventToDispatch = eventModalOpen;
      if (modal.classList.contains('active')) {
        eventToDispatch = eventModalClose;
      }
      modal.dispatchEvent(eventToDispatch);
      modal.classList.toggle('active');
      event.preventDefault(); // prevents rewriting url (apps can still use hash values in url)
    }
  });
}());