Genom att göra denna ändring hade allt fungerat bättre tror jag:
www.tv.nu/js/newpopup.js:
Byt ut:
Kod:
function i(id, dummie){
* *var newwin = window.open('/popups/' + id + '-w.html', 'tvnupopup', 'toolbar=0, scrollbars=yes, location=0, statusbar=0, menubar=0, resizable=0, width=520, height=320');
* *newwin.focus();
}
Mot :
Kod:
function i(id, dummie){
* *var newwin = window.open('/popups/' + id + '-w.html', 'tvnupopup', 'toolbar=0, scrollbars=yes, location=0, statusbar=0, menubar=0, resizable=1, width=520, height=320');
* *newwin.focus();
}
Edit: det är alltså bara resizable=1 som ändrats.