Displaying 1 result from an estimated 1 matches for "1713f".
Did you mean:
1713
2006 Jan 06
3
Protoype problem
...removed the border, both had the 320px width.
I run Firefox 1.5 with the webdeveloper-toolbar, and once I set the
browser to use the "Border Box Model" it worked out well.
So, basically, would it make more sense to rather take the style.width
than the offsetWidth?
I changed the lines 1713f in prototype.js to:
if(options.setWidth) target.style.width = source.style.width;
if(options.setHeight) target.style.height = source.style.height;
and it worked for me (without the border box model).
So, what do you think, is this a bug or is this just an "option"?
--
gre...