Thread Starter
skuska
(@skuska)
I found in file general.js
function theChampPopup(e){window.open(e,"_blank","height=400,width=600,left=400,top=100,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}
How do I change this code??
Thread Starter
skuska
(@skuska)
I fouund in general.js code
function theChampPopup(e){window.open(e,"_blank","height='+screen.height+',width='+screen.width,left=400,top=100,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}
What to do to make the window full screen?
Replace window.open(e,"_blank","height='+screen.height+',width='+screen.width,left=400,top=100,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")
in above code with following:
window.open(e,"popUpWindow","height=400,width=600,left=400,top=100,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no,status=yes")
Thread Starter
skuska
(@skuska)
Unfortunately it does not work. In IE work “fullscreen=yes”, but i would like it to work in Chrome
Thread Starter
skuska
(@skuska)
I did, thanks for help @heateor