Skip to content

Commit

Permalink
fixed small bug in qtree behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
stevewirts committed Feb 7, 2015
1 parent cf68d09 commit 0c4c418
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 85 deletions.
2 changes: 1 addition & 1 deletion behaviors/fin-hypergrid-behavior-qtree.html
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@
var normalized = Math.floor(y - this.scrollPositionY);
if (this.block) {
var val = this.block.Z[1][col][normalized];
if (val) {
if (val || val === 0) {
return val;
}
}
Expand Down
84 changes: 0 additions & 84 deletions q/index.html

This file was deleted.

0 comments on commit 0c4c418

Please sign in to comment.