/******/ (function() { // webpackBootstrap /******/ var __webpack_modules__ = ([ /* 0 */, /* 1 */ /***/ (function(module) { String.prototype.toTitleCase = function() { return this.replace(/\w\S*/g, function(txt) { return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase(); }); } String.prototype.toSentenceCase = function() { return this.charAt(0).toUpperCase() + this.substr(1).toLowerCase(); } String.prototype.toContent = function() { return this.replace(/-/g, " "); } const copyColourFallback = (copyInfo, attr) => { console.log("fallback") var textArea = document.createElement('textarea'); textArea.value = copyInfo; // Avoid scrolling to bottom textArea.style.top = '0'; textArea.style.left = '0'; textArea.style.position = 'fixed'; document.body.appendChild(textArea); textArea.focus(); textArea.select(); try { var successful = document.execCommand('copy'); setTimeout(function () { if (successful) { //copyInfo.success(); showMessage(`Copied ${attr}.`) } else { //copyInfo.error(); showMessage(`Copy failed (${attr}).`, false) } }, 1); } catch (err) { setTimeout(function () { showMessage(`Copy failed (${attr}). ${err.Message}`, false); //copyInfo.error(err); }, 1); } document.body.removeChild(textArea); } const showMessage = (m, s) => { s = s == undefined ? true : s; console.log("Copy success (navigator.clipboard)"); $("body").prepend("
"); $("#copystatus > div").css("top", (window.scrollY + 100)+ "px"); $("#copystatus").fadeIn(1000, function(){ $(this).fadeOut( 1000, function() { $(this).remove(); }); }) } const getURLVars = () => { var oResult = {}; if (location.search.length > 0) { var aQueryString = (location.search.substr(1)).split("&"); for (var i = 0; i < aQueryString.length; i++) { var aTemp = aQueryString[i].split("="); if (aTemp[1].length > 0) { oResult[aTemp[0]] = decodeURIComponent(aTemp[1].replace(/\+/g, '%20')); } } } return oResult; } module.exports = { url: getURLVars(), cookie: { set: (name, value, expires, path, domain, secure) => { switch(typeof expires) { case "number" : var d = new Date() expires = d.setTime(d + (expires*24*60*60*1000)); break; case "object" : expires = expires.toGMTString(); } document.cookie= name + "=" + escape(value) + ((expires) ? "; expires=" + expires : "") + ("; path=/") + ((domain) ? "; domain=" + domain : "") + ((secure) ? "; secure" : ""); }, get: (cname) => { var name = cname + "="; var ca = document.cookie.split(";"); for(var i = 0; i${aa.innerHTML}
`;
})
break;
case "md":
a.querySelectorAll("code").forEach((aa) => {
aa.classList.add("language-html");
})
break;
}
a.querySelectorAll("code").forEach((c)=> {
c.innerHTML = c.innerHTML.replace(/ {
module.exports.colour.positionTooltip();
}
a.querySelectorAll("name > span, color-pill > span").forEach((pill) => {
pill.onclick = (e) => {
e.preventDefault();
let w = "";
if (e.metaKey || e.ctrlKey || e.keyCode == 91 || e.keyCode == 224) {
w = "var";
} else if (e.altKey) {
w = "token"
} else if (e.shiftKey) {
w = "rgb";
} else {
w = "hex";
}
module.exports.colour.copy(w, pill);
}
})
break;
case 404:
if (typeof args.notFound == "function") args.notFound(a, path);
break;
default:
console.log("uncaught http error", { status: ajx.status, path: a.getAttribute("data-path") });
}
}
};
ajx.open("GET", path, ASYNC);
ajx.send();
}
})
}
};
/***/ }),
/* 2 */
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
/* **********************************************
Begin prism-core.js
********************************************** */
///