summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustOff <Off.Just.Off@gmail.com>2018-05-16 00:28:28 +0300
committerJustOff <Off.Just.Off@gmail.com>2018-05-16 00:28:28 +0300
commitec1aeee6d38ec076c068472cbc672f5b23934054 (patch)
treead1bb344b251209ba61d2e20a0ba56e319210e1a
parentc9d1a79bd076f39e11d0bf9ca7f543ec910cf2b2 (diff)
downloadUXP-ec1aeee6d38ec076c068472cbc672f5b23934054.tar
UXP-ec1aeee6d38ec076c068472cbc672f5b23934054.tar.gz
UXP-ec1aeee6d38ec076c068472cbc672f5b23934054.tar.lz
UXP-ec1aeee6d38ec076c068472cbc672f5b23934054.tar.xz
UXP-ec1aeee6d38ec076c068472cbc672f5b23934054.zip
Revive the quickdial page (about:newtab)
-rw-r--r--application/palemoon/base/content/newtab/grid.js4
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));
}
},