DaltonPimmel / flexigrid

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

Missing var #102

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
flexigrid.js line 368:

  for (idx = 0; idx < cell.length; idx++) {

should be:

  for (var idx = 0; idx < cell.length; idx++) {

Original issue reported on code.google.com by jochen.t...@googlemail.com on 11 Feb 2012 at 8:51

GoogleCodeExporter commented 8 years ago
also on line 688:
  thead = document.createElement('thead');
should be
  var thead = document.createElement('thead');

Original comment by jochen.t...@googlemail.com on 11 Feb 2012 at 8:55