What's the URL of the page containing the problem?
/scripts/rb/widgets.js
What steps will reproduce the problem?
1. Enter a review from IE7 on Vista
2. Click "add comment" in a review
3. JavaScript's invalid argument pop-up shows.
What is the expected output? What do you see instead?
Should show the comment editing box and grow it size automatically.
On Firefox it works correctly but on IE on the same box it just fails.
What operating system are you using? What browser?
Windows Vista with IE7 all latest patches.
Please provide any additional information below.
I narrow it down to the function:
grow: function() {
if (this.el.dom.scrollHeight > this.el.dom.clientHeight) {
this.size += 2;
this.el.setHeight(this.getHeight());
this.grow();
}
in the file widgets.js. The problem is that this.size return NaN for some
reason so the call to setHeight fails later on to set the height of the
comments' text area object as it tries to set it to NaNpx.