Build mobile apps with simple HTML, CSS, and JS components. http://goratchet.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

103 lines
2.5 KiB

/* ========================================================================
* Ratchet: popovers.js v2.0.2
* http://goratchet.com/components#popovers
* ========================================================================
* Copyright 2014 Connor Sears
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
* ======================================================================== */
12 years ago
!(function () {
'use strict';
12 years ago
var popover;
var listener;
12 years ago
var findPopovers = function (target) {
var i;
var popovers = document.querySelectorAll('a');
12 years ago
for (; target && target !== document; target = target.parentNode) {
for (i = popovers.length; i--;) {
if (popovers[i] === target) {
return target;
}
}
12 years ago
}
};
var hidePopover = function () {
popover.addEventListener('webkitTransitionEnd', (listener = onPopoverHidden));
popover.classList.remove('visible');
popover.parentNode.removeChild(backdrop);
};
12 years ago
var onPopoverHidden = function () {
popover.style.display = 'none';
listener = popover.removeEventListener('webkitTransitionEnd', onPopoverHidden);
};
12 years ago
var backdrop = (function () {
12 years ago
var element = document.createElement('div');
element.classList.add('backdrop');
element.addEventListener('touchend', hidePopover);
element.addEventListener('click', hidePopover);
12 years ago
return element;
}());
12 years ago
var getPopover = function (e, id) {
var anchor = e && findPopovers(e.target);
12 years ago
if ((!anchor || !anchor.hash || (anchor.hash.indexOf('/') > 0)) && !id) {
return;
}
12 years ago
try {
popover = document.querySelector(id || anchor.hash);
}
catch (error) {
popover = null;
}
if (popover === null) {
return;
}
12 years ago
if (!popover || !popover.classList.contains('popover')) {
return;
}
12 years ago
return popover;
};
12 years ago
var showHidePopover = function (e, id) {
var popover = getPopover(e, id);
12 years ago
if (!popover || !!listener) {
return;
}
12 years ago
if (popover.classList.contains('visible')) {
return hidePopover();
}
12 years ago
popover.style.display = 'block';
popover.offsetHeight;
popover.classList.add('visible');
popover.parentNode.appendChild(backdrop);
};
12 years ago
window.addEventListener('touchend', showHidePopover);
window.addEventListener('click', showHidePopover);
window.POPOVER = {
show: function (id) {
showHidePopover(null, id);
},
hide: function () {
popover && hidePopover();
}
};
}());