Hello All.
We have a JavaScript pop up that is called with parameters that appeared to be working under jabber version 11.6 when it was still using ie embedded browser. After we upgraded to 12.5 with the chromium embedded browser it appears that popups no longer work as intended. The sizing and position does not work as well as opening up I a new window. I have attached a snippet of the JS code below. Any help is greatly appreciated. Thanks:
function loadpop(Phone,Caller,CID,CB) {
var width = 690;
var height = 225;
var left = screen.width - 700;//screen.width-500;
var top = 0;//srceen.height-250;
var params = 'width=' + width + ', height=' + height;
params += ', top=' + top + ', left=' + left;
params += ', directories=no';
params += ', location=no';
params += ', menubar=no';
params += ', resizable=no';
params += ', scrollbars=no';
params += ', status=no';
params += ', toolbar=no';
popwin = window.open('[OURINTERNALLINK]' + 'Phone=' + Phone + '&Caller=' + Caller + "&Cid=" + CID + "&CB=" + CB, 'pop', params);
popwin.focus();
}