Skip to content

Commit

Permalink
Fixed unresolvable variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
roxeteer committed May 15, 2012
1 parent 3a3e570 commit 60f40b2
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 60f40b2

Please sign in to comment.