getPageCount() got renamed to getPageLength() while the patch to bug 178091 (bug 21344) was waiting for review so this change slipped the net r=mscott

This commit is contained in:
neil%parkwaycc.co.uk 2006-04-21 15:21:34 +00:00
Родитель 17ca1575dc
Коммит c1622cfb38
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1763,7 +1763,7 @@
parentNode: this.parentNode,
getLastVisibleRow: function getLastVisibleRow(box) {
var f = box.getFirstVisibleRow();
var p = box.getPageCount();
var p = box.getPageLength();
var l = box.view.rowCount;
return (l < f + p ? l : f + p) - 1;
},