Skip to content

Commit

Permalink
fix style (vuejs#5383)
Browse files Browse the repository at this point in the history
  • Loading branch information
romoo authored and yyx990803 committed Apr 6, 2017
1 parent c28b566 commit ba13854
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion benchmarks/big-table/demo.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
form {
margin-bottom: 15px ;
margin-bottom: 15px;
}

td.hidden {
Expand Down
4 changes: 2 additions & 2 deletions benchmarks/big-table/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ <h1>Rendering Dynamic Big Table</h1>
var valueIndex = 0
var grid = []

for ( var r = 0 ; r < rowCount ; r++ ) {
for ( var r = 0; r < rowCount; r++ ) {
var row = {
id: r,
items: []
}
for ( var c = 0 ; c < columnCount ; c++ ) {
for ( var c = 0; c < columnCount; c++ ) {
row.items.push({
id: ( r + "-" + c ),
value: valuePoints[ valueIndex ]
Expand Down

0 comments on commit ba13854

Please sign in to comment.