Skip to content

Commit

Permalink
Merge pull request #11 from roxeteer/master
Browse files Browse the repository at this point in the history
Fixed unresolvable variable
  • Loading branch information
taitems committed May 30, 2012
2 parents 3a3e570 + 60f40b2 commit dae6374
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/jquery.fn.gantt.js
Original file line number Diff line number Diff line change
Expand Up @@ -1385,7 +1385,7 @@
return ret;
},
getPageHeight: function (element) {
return element.pageNum + 1 === element.pageCount ? rowsOnLastPage * tools.getCellSize() : settings.itemsPerPage * tools.getCellSize();
return element.pageNum + 1 === element.pageCount ? element.rowsOnLastPage * tools.getCellSize() : settings.itemsPerPage * tools.getCellSize();
},
_getProgressBarMargin: null,
getProgressBarMargin: function () {
Expand Down

0 comments on commit dae6374

Please sign in to comment.