Skip to content

Commit

Permalink
Merge pull request tidev#1348 from joshthecoder/timob-6380
Browse files Browse the repository at this point in the history
[TIMOB-6380] Android: tableView - Scrolling large table results in out-of-memory error on tablets
  • Loading branch information
Opie Cyrus committed Feb 7, 2012
2 parents 14bf057 + af1d7c8 commit 06c4c6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demos/KitchenSink/Resources/examples/table_view_perf.js
Expand Up @@ -23,7 +23,7 @@ var data = [];

for (var c=0;c<count;c++)
{
var row = Ti.UI.createTableViewRow({title:"Row "+(c+1)});
var row = Ti.UI.createTableViewRow({title:"Row "+(c+1), className: "row"});
data[c] = row;
}

Expand Down

0 comments on commit 06c4c6e

Please sign in to comment.