small fix for IE, CRM window login popup in vicidial.php

git-svn-id: svn://192.168.202.10@1366 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
mattf
2010-03-09 22:11:47 +00:00
parent 91fbb1657b
commit b6a3a8bc33
2 changed files with 7 additions and 4 deletions
@@ -276,10 +276,11 @@
# 100207-1109 - Changed Pause Codes function to allow for multiple pause codes per pause period
# 100228-1257 - Fixed no-selected default transfer group issue on inbound calls
# 100301-1329 - Changed AGENTDIRECT user selection launching to AGENTS link next to number-to-dial field
# 100309-1709 - small fix for IE CRM popup
#
$version = '2.2.0-254';
$build = '100301-1329';
$version = '2.2.0-255';
$build = '100309-1709';
$mel=1; # Mysql Error Log enabled = 1
$mysql_log_count=64;
$one_mysql_log=0;
@@ -9900,7 +9901,8 @@ else
var TEMP_crm_login_address = decoded;
TEMP_crm_login_address = TEMP_crm_login_address.replace(regWFAcustom, '');
CRMwin = window.open(TEMP_crm_login_address, 'CRMwin,toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1,width=700,height=480');
var CRMwin = 'CRMwin';
CRMwin = window.open(TEMP_crm_login_address, CRMwin,'toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1,width=700,height=480');
CRMwin.blur();
}
+2 -1
View File
@@ -10140,7 +10140,8 @@ else
var TEMP_crm_login_address = decoded;
TEMP_crm_login_address = TEMP_crm_login_address.replace(regWFAcustom, '');
CRMwin = window.open(TEMP_crm_login_address, 'CRMwin,toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1,width=700,height=480');
var CRMwin = 'CRMwin';
CRMwin = window.open(TEMP_crm_login_address, CRMwin,'toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1,width=700,height=480');
CRMwin.blur();
}