Spade

Mini Shell

Directory:~$ /home/lmsyaran/public_html/joomla4/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ /home/lmsyaran/public_html/joomla4/iframe.js.tar

home/lmsyaran/public_html/media/com_hikashop/js/iframe.js000064400000001704151160202160017560
0ustar00/**
 * @package    HikaShop for Joomla!
 * @version    2.2.3
 * @author     hikashop.com
 * @copyright  (C) 2010-2013 HIKARI SOFTWARE. All rights reserved.
 * @license    GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
 */
function HikashopGetDocHeight(doc){
		var docHt = 0, sh, oh;
		if (doc.height) docHt = doc.height;else if (doc.body){
			if (doc.body.scrollHeight) docHt = sh = doc.body.scrollHeight;
			if (doc.body.offsetHeight) docHt = oh = doc.body.offsetHeight;if (sh
&& oh) docHt = Math.max(sh, oh);
		}
		return docHt;
	}


function HikashopSetIframeHeight(iframeName){
		var iframeWin = window.frames[iframeName];
		var iframeEl = document.getElementById?
document.getElementById(iframeName): document.all?
document.all[iframeName]: null;
		if ( iframeEl && iframeWin ){
			iframeEl.style.height = "auto";
			var docHt = this.HikashopGetDocHeight(iframeWin.document);
			iframeEl.style.height = docHt + 30 + "px";
		}
	}