diff options
author | JustOff <Off.Just.Off@gmail.com> | 2018-05-16 00:28:28 +0300 |
---|---|---|
committer | JustOff <Off.Just.Off@gmail.com> | 2018-05-16 00:28:28 +0300 |
commit | ec1aeee6d38ec076c068472cbc672f5b23934054 (patch) | |
tree | ad1bb344b251209ba61d2e20a0ba56e319210e1a /application/palemoon/base/content/newtab/grid.js | |
parent | c9d1a79bd076f39e11d0bf9ca7f543ec910cf2b2 (diff) | |
download | UXP-ec1aeee6d38ec076c068472cbc672f5b23934054.tar UXP-ec1aeee6d38ec076c068472cbc672f5b23934054.tar.gz UXP-ec1aeee6d38ec076c068472cbc672f5b23934054.tar.lz UXP-ec1aeee6d38ec076c068472cbc672f5b23934054.tar.xz UXP-ec1aeee6d38ec076c068472cbc672f5b23934054.zip |
Revive the quickdial page (about:newtab)
Diffstat (limited to 'application/palemoon/base/content/newtab/grid.js')
-rw-r--r-- | application/palemoon/base/content/newtab/grid.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/application/palemoon/base/content/newtab/grid.js b/application/palemoon/base/content/newtab/grid.js index a614d0396..fbeb7bd27 100644 --- a/application/palemoon/base/content/newtab/grid.js +++ b/application/palemoon/base/content/newtab/grid.js @@ -115,10 +115,10 @@ var gGrid = { // (Re-)initialize all cells. let cellElements = this.node.querySelectorAll(".newtab-cell"); // Tycho: this._cells = [new Cell(this, cell) for (cell of cellElements)]; - this.cells = []; + this._cells = []; for (let cellItem of cellElements) { - this.cells.push(new Cell(this, cellItem)); + this._cells.push(new Cell(this, cellItem)); } }, |