dialog height not working on IE6
I'm using jquery-ui-personalized-1.6rc6 and it seems that when i pop
up a dialog in IE6 it dosen't respect the height attribute that I set:
$("#add_teammate_form_div").dialog({
modal: true,
autoOpen: true,
width: 400,
height: 300,
overlay:
{
opacity: 0.5,
background: "black"
},
buttons:
{
"Save": function() {
add_new_teammate();
},
"Cancel": function() {
$(this).dialog("destroy");
}
}
});
this works fine in firefox but i'm trying to get it to work in IE6.
any suggestions would be apprecited