zentaopms/www/js/bindranzhi.js
2023-05-16 10:47:08 +08:00

28 lines
893 B
JavaScript

function redirect(ranzhiURL, ranzhiCode)
{
var notInIframe = (self == parent);
var entryUrl = encodeURIComponent(window.location.href);
if(notInIframe) location.href = ranzhiURL + '/sys/index.php?entryID=' + ranzhiCode + '&entryUrl=' + entryUrl;
}
function setOuterBox()
{
var side = $('#wrap .outer > .side');
var resetOuterHeight = function()
{
var sideH = side.length ? (side.outerHeight() + $('#featurebar').outerHeight() + 20) : 0;
var height = Math.max(sideH, $(window).height() - $('#header').outerHeight() || 0) - 20;
if(navigator.userAgent.indexOf("MSIE 8.0") >= 0) height -= 40;
$('#wrap .outer').css('min-height', height);
}
side.resize(resetOuterHeight);
$(window).resize(resetOuterHeight);
resetOuterHeight();
}
if($('#pageNav').html() == '')
{
$('#subNavbar ul').css('margin-left', '-10px');
}