/* * Copyright (c) 2016, 2024, 5 Mode * All rights reserved. * * This file is part of BoxToBox. * * Permission is hereby granted, free of charge, to any person obtaining a copy of this software * and associated documentation files (the "Software"), to deal in the Software * without restriction, including without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all copies or * substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * * BoxToBox common javascript code. * * @author Daniele Bonini * @copyrights (c) 2021, 2024, 5 Mode */ function BOXTOBOXcloseMe(tthis) { $(tthis).parent().hide(); } /** * Encrypt the given string * * @param {string} string - The string to encrypt * @returns {string} the encrypted string */ function BOXTOBOXencryptSha2(string) { var jsSHAo = new jsSHA("SHA-256", "TEXT", 1); jsSHAo.update(string); return jsSHAo.getHash("HEX"); } /** * Get the height of the whole document * * @param {none} * @returns {int} the document height */ function BOXTOBOXgetDocHeight() { var D = document; return Math.max( D.body.scrollHeight, D.documentElement.scrollHeight, D.body.offsetHeight, D.documentElement.offsetHeight, D.body.clientHeight, D.documentElement.clientHeight ); } function BOXTOBOXgetDocHeight2() { var D = document; var scrollMaxY; if (window.scrollMaxY) { scrollMaxY = window.scrollMaxY; } else { scrollMaxY = D.documentElement.scrollHeight; } var height = Math.max( D.body.scrollHeight, scrollMaxY, D.body.offsetHeight, D.documentElement.offsetHeight, D.body.clientHeight, D.documentElement.clientHeight ); return height; } /** * Get the width of the whole document * * @param {none} * @returns {int} the document width */ function BOXTOBOXgetDocWidth() { var D = document; return Math.max( D.body.scrollWidth, D.documentElement.scrollWidth, D.body.offsetWidth, D.documentElement.offsetWidth, D.body.clientWidth, D.documentElement.clientWidth ); } function BOXTOBOXgetDocWidth2() { var D = document; var scrollMaxX; if (window.scrollMaxX) { scrollMaxX = window.scrollMaxX; } else { scrollMaxX = D.documentElement.scrollWidth; } return Math.max( D.body.scrollWidth, scrollMaxX, D.body.offsetWidth, D.documentElement.offsetWidth, D.body.clientWidth, D.documentElement.clientWidth ); } function BOXTOBOXrnd(min, max) { min = Math.ceil(min); max = Math.floor(max); return Math.floor(Math.random() * (max - min +1)) + min; } /** * Open a link from any event handler * * @param {string} href the link to open * @param {string} target the frame target * @returns {none} */ function BOXTOBOXopenLink(href, target) { window.open(href, target); }