Quote:
Originally Posted by Ophelia
When you have forced accept turned on, and you go to the local_links.php, it resizes your window, like it would on a popup. It does this both in Firefox and IE. Can that be changed?
|
Edit the links_agreement and the links_agreement_declined templates. In each case, find this sequence:
Code:
<script language="JavaScript">
<!--
if (parseInt(navigator.appVersion)>3) {
if (navigator.appName=="Netscape") {
winW = window.innerWidth;
winH = window.innerHeight;
}
if (navigator.appName.indexOf("Microsoft")!=-1) {
winW = document.body.offsetWidth;
winH = document.body.offsetHeight;
}
}
if ((winW<$links_defaults[musicbox_standalone_width]) || (winH<$links_defaults[musicbox_standalone_height])) {
self.resizeTo($links_defaults[musicbox_standalone_width], $links_defaults[musicbox_standalone_height]);
}
-->
</script>
and delete it.
I must have put that there for a reason - I can't recall why now.