diff options
author | New Tobin Paradigm <email@mattatobin.com> | 2018-05-15 20:05:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-15 20:05:44 -0400 |
commit | 000ac0cc833c415169ed7aa8c5e3493d0d4525fd (patch) | |
tree | ad1bb344b251209ba61d2e20a0ba56e319210e1a | |
parent | c9d1a79bd076f39e11d0bf9ca7f543ec910cf2b2 (diff) | |
parent | ec1aeee6d38ec076c068472cbc672f5b23934054 (diff) | |
download | UXP-000ac0cc833c415169ed7aa8c5e3493d0d4525fd.tar UXP-000ac0cc833c415169ed7aa8c5e3493d0d4525fd.tar.gz UXP-000ac0cc833c415169ed7aa8c5e3493d0d4525fd.tar.lz UXP-000ac0cc833c415169ed7aa8c5e3493d0d4525fd.tar.xz UXP-000ac0cc833c415169ed7aa8c5e3493d0d4525fd.zip |
Merge pull request #359 from JustOff/PR_about_newtab_fix
Revive the quickdial page (about:newtab)
-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)); } }, |