ChavezArquitectos / curvycorners

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

IE8 object does not support property or method in line 1270 #68

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Debugging shows that node is an array, that has been passed in from line
311. I believe, instead of passing in the array, it should actually pass in
the current iterated node. So this

309: var encloser = curvyCorners.getElementsByClass(argbits[0]);
310: for (j = 0; j < encloser.length; ++j) {
311:   boxCol = boxCol.concat(curvyCorners.getElementsByClass(argbits[1],
encloser));
312: }

should be replaced with

311:   boxCol = boxCol.concat(curvyCorners.getElementsByClass(argbits[1],
encloser[j]));

Original issue reported on code.google.com by christop...@heroldit.de on 31 Mar 2010 at 12:28

GoogleCodeExporter commented 8 years ago
This was fixed a long time ago - it applies to a long-dead revision. Thanks 
anyway for 
debugging it!

Original comment by c.1%smit...@gtempaccount.com on 9 Apr 2010 at 2:39

GoogleCodeExporter commented 8 years ago
What revision is the current revision? I found this bug in V2.0.4, which I 
considered
current up until now.

Original comment by christop...@heroldit.de on 9 Apr 2010 at 7:03

GoogleCodeExporter commented 8 years ago
Cris, you are in my book of very usefull poeple

Original comment by scottn...@gmail.com on 28 Oct 2010 at 10:21