Skip to content

Commit

Permalink
Minor cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
mleibman committed Aug 26, 2012
1 parent 1f65255 commit c64c0fd
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions slick.grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -1323,10 +1323,8 @@ if (typeof Slick === "undefined") {
}

function appendRowHtml(stringArray, row, range) {
var cacheEntry = rowsCache[row];
var d = getDataItem(row);
var dataLoading = row < getDataLength() && !d;
var cellCss;
var rowCss = "slick-row" +
(dataLoading ? " loading" : "") +
(row % 2 == 1 ? " odd" : " even");
Expand Down Expand Up @@ -2335,12 +2333,6 @@ if (typeof Slick === "undefined") {
}
}

function scrollActiveCellIntoView() {
if (activeRow != null && activeCell != null) {
scrollCellIntoView(activeRow, activeCell);
}
}

function setActiveCellInternal(newCell, editMode) {
if (activeCellNode !== null) {
makeActiveCellNormal();
Expand Down

0 comments on commit c64c0fd

Please sign in to comment.