qyqx / j-table

Automatically exported from code.google.com/p/j-table
0 stars 0 forks source link

test suite doesn't pass in IE or Chrome #41

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
though it does in Safari.

Original issue reported on code.google.com by chris.f....@gmail.com on 28 Sep 2008 at 9:34

GoogleCodeExporter commented 8 years ago
Chrome failure is due to bug in V8 - see
http://code.google.com/p/v8/issues/detail?id=103.

Original comment by chris.f....@gmail.com on 2 Oct 2008 at 9:14

GoogleCodeExporter commented 8 years ago
fixed IE issue with hide.
problem now with table.sort, seems to be line 251 
   var newRows = Array.prototype.slice.call(rows);

error: JScript object expected

Original comment by chris.f....@gmail.com on 2 Oct 2008 at 10:17

GoogleCodeExporter commented 8 years ago
er fixed Chrome issue, seems that I was mis-interpreting the Array.sort() 
function.

Original comment by chris.f....@gmail.com on 3 Oct 2008 at 9:24

GoogleCodeExporter commented 8 years ago
IE fixed. I had to work around two IE bugs:
* Array.prototype.slice.call(DOM) doesn't work
* insertBefore(x, undefined) doesn't work.

Original comment by chris.f....@gmail.com on 3 Oct 2008 at 10:03

GoogleCodeExporter commented 8 years ago

Original comment by chris.f....@gmail.com on 3 Oct 2008 at 10:04