nirajrns / dataobjectmanager

Automatically exported from code.google.com/p/dataobjectmanager
0 stars 0 forks source link

Pop-up iframe height #7

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. dataobjectmanager which contains an ImageField

What is the expected output? What do you see instead?
Popup has 2 scrollbars in IE9.

Please provide any additional information below.
Fixed this by changing line 9 of dataobjectmanager_popup.js to:

var fields_height = (iframe_height - diff)-((ie) ? 50 : 50);

though it might as well be 

var fields_height = (iframe_height - diff)-50;

Original issue reported on code.google.com by jasonch...@gmail.com on 30 Apr 2012 at 10:56