Ver Mensaje Individual
  #1 (permalink)  
Antiguo 12/03/2014, 18:48
MarkiiAk
 
Fecha de Ingreso: enero-2011
Ubicación: Del otro lado del monitor
Mensajes: 43
Antigüedad: 13 años, 3 meses
Puntos: 0
deshabilitar maximizar en chrome

Que tal, tengo el siguiente codigo, en IE si me deshabilita el maximizar pero en chrome no lo hace alguien me puede ayudar??

function PopupWindow()
{
var userWidth = screen.availWidth;
var userHeight = screen.availHeight;
leftPos = (userWidth - 900) / 2,
topPos = (userHeight - 600) / 2;
settings = 'modal,scrollBars=no,resizable=no,toolbar=no,menub ar=no,location=no,directories=no,left='+ leftPos +',top=' + topPos +',width=900, height=600';
window.open("Registro.aspx", "popup", settings);
}