Apparently in IE7 you can't .load into an <iframe>. But you can .load

into a <div>.  So there.
This commit is contained in:
dave 2010-02-04 06:48:42 +00:00
parent ebbfaf42bd
commit 4aae875630
2 changed files with 4 additions and 4 deletions

View File

@ -173,7 +173,7 @@ case 'email_save':
exit;
case 'dialog_edit':
if(array_key_exists('id', $_GET)) {
$id = intval($_GET['id']);
$cloneid = 0;
@ -321,7 +321,7 @@ case 'dialog_edit':
return false;
}
);
$("#comm_dialog_edit").dialog({
bgiframe: true, autoOpen: true,
modal: true, resizable: false,

View File

@ -89,10 +89,10 @@ function opencommunicationeditor(key,id,fcid) {
fcstr="&fundraising_campaigns_id="+fcid;
if(id) {
$("#content").load("communication.php?action=dialog_edit&id="+id+fcstr,null,function() {
$("#debug").load("communication.php?action=dialog_edit&id="+id+fcstr,null,function() {
});
} else {
$("#content").load("communication.php?action=dialog_edit&key="+key+fcstr,null,function() {
$("#debug").load("communication.php?action=dialog_edit&key="+key+fcstr,null,function() {
});
}
return false;