/home/techb158/balacoffee.com/wp-content/plugins/coming-soon/public/js
NameSizeModeActions
animate-dynamic.js197230644editdlrm
dynamic-text.js336850644editdlrm
iframeResizer.contentWindow.js344900644editdlrm
iframeResizer.contentWindow.min.js133890644editdlrm
iframeResizer.js320530644editdlrm
iframeResizer.min.js123800644editdlrm
imagesloaded.pkgd.min.js55940644editdlrm
img-previewer.js233680644editdlrm
img-previewer.min.js112710644editdlrm
isotope.pkgd.js913980644editdlrm
jquery-numerator.js41330644editdlrm
jquery-numerator.min.js19060644editdlrm
jquery.animation.js49400644editdlrm
jquery.animation.min.js9160644editdlrm
jquery.event.move.js145300644editdlrm
jquery.lettering.js18420644editdlrm
jquery.lettering.min.js6850644editdlrm
jquery.textillate.js111880644editdlrm
jquery.textillate.min.js54160644editdlrm
jquery.twentytwenty.js54140644editdlrm
jquery.twentytwenty.min.js54140644editdlrm
lightbox.js200310644editdlrm
lightbox.min.js103830644editdlrm
masonry.pkgd.js633160644editdlrm
minimasonry.js74930644editdlrm
sp-animateeffects.js323330644editdlrm
sp-animateeffects.min.js107200644editdlrm
sp-scripts.js1034070644editdlrm
sp-scripts.min.js456400644editdlrm
toolbar.js36600644editdlrm
tooltipster.bundle.min.js399000644editdlrm
tsparticles.js2967100644editdlrm
tsparticles.min.js1406300644editdlrm
tubular.js69740644editdlrm
xdLocalStorage.js44390644editdlrm
Edit: /home/techb158/balacoffee.com/wp-content/plugins/coming-soon/public/js/xdLocalStorage.js (4439B)
'use strict'; window.XdUtils = window.XdUtils || (function () { function extend(object, defaultObject) { var result = defaultObject || {}; var key; for (key in object) { if (object.hasOwnProperty(key)) { result[key] = object[key]; } } return result; } //public interface return { extend: extend }; })(); window.xdLocalStorage = window.xdLocalStorage || (function () { var MESSAGE_NAMESPACE = 'seedprod-cross-domain-local-message'; var options = { iframeId: 'cross-domain-iframe', iframeUrl: undefined, initCallback: function () { } }; var requestId = -1; var iframe; var requests = {}; var wasInit = false; var iframeReady = true; function applyCallback(data) { if (requests[data.id]) { requests[data.id](data); delete requests[data.id]; } } function receiveMessage(event) { var data; try { data = JSON.parse(event.data); } catch (err) { //not our message, can ignore } if (data && data.namespace === MESSAGE_NAMESPACE) { if (data.id === 'iframe-ready') { iframeReady = true; options.initCallback(); } else { applyCallback(data); } } } function buildMessage(action, key, value, callback) { requestId++; requests[requestId] = callback; var data = { namespace: MESSAGE_NAMESPACE, id: requestId, action: action, key: key, value: value }; iframe.contentWindow.postMessage(JSON.stringify(data), '*'); } function init(customOptions) { options = XdUtils.extend(customOptions, options); var temp = document.createElement('div'); if (window.addEventListener) { window.addEventListener('message', receiveMessage, false); } else { window.attachEvent('onmessage', receiveMessage); } temp.innerHTML = ''; document.body.appendChild(temp); iframe = document.getElementById(options.iframeId); } function isApiReady() { if (!wasInit) { console.log('You must call xdLocalStorage.init() before using it.'); return false; } if (!iframeReady) { console.log('You must wait for iframe ready message before using the api.'); return false; } return true; } function isDomReady() { return (document.readyState === 'complete'); } return { //callback is optional for cases you use the api before window load. init: function (customOptions) { if (!customOptions.iframeUrl) { throw 'You must specify iframeUrl'; } if (wasInit) { console.log('xdLocalStorage was already initialized!'); return; } wasInit = true; if (isDomReady()) { init(customOptions); } else { if (document.addEventListener) { // All browsers expect IE < 9 document.addEventListener('readystatechange', function () { if (isDomReady()) { init(customOptions); } }); } else { // IE < 9 document.attachEvent('readystatechange', function () { if (isDomReady()) { init(customOptions); } }); } } }, setItem: function (key, value, callback) { if (!isApiReady()) { return; } buildMessage('set', key, value, callback); }, getItem: function (key, callback) { if (!isApiReady()) { return; } buildMessage('get', key, null, callback); }, removeItem: function (key, callback) { if (!isApiReady()) { return; } buildMessage('remove', key, null, callback); }, key: function (index, callback) { if (!isApiReady()) { return; } buildMessage('key', index, null, callback); }, getSize: function (callback) { if (!isApiReady()) { return; } buildMessage('size', null, null, callback); }, getLength: function (callback) { if (!isApiReady()) { return; } buildMessage('length', null, null, callback); }, clear: function (callback) { if (!isApiReady()) { return; } buildMessage('clear', null, null, callback); }, wasInit: function () { return wasInit; } }; })();