summaryrefslogtreecommitdiff
path: root/src/content/ftp.js
diff options
context:
space:
mode:
authorhackademix2019-02-01 01:17:58 +0100
committerhackademix2019-02-01 01:17:58 +0100
commit0878ad2b0a0d3af5db66cc6a4f7d882e17a13365 (patch)
tree877ee5d84d5cb33e6e4091c2418afdb11731ceee /src/content/ftp.js
parentd152a5387197e37bbb9838392f454f041e2478ea (diff)
downloadnoscript-0878ad2b0a0d3af5db66cc6a4f7d882e17a13365.tar.gz
noscript-0878ad2b0a0d3af5db66cc6a4f7d882e17a13365.tar.xz
noscript-0878ad2b0a0d3af5db66cc6a4f7d882e17a13365.zip
Remove usage of non-standard Array methods.
Diffstat (limited to 'src/content/ftp.js')
-rw-r--r--src/content/ftp.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/content/ftp.js b/src/content/ftp.js
index 4b9585e..73ef5e8 100644
--- a/src/content/ftp.js
+++ b/src/content/ftp.js
@@ -9,7 +9,7 @@
) {
return;
}
-
+
gTable = document.getElementsByTagName("table")[0];
gTBody = gTable.tBodies[0];
if (gTBody.rows.length < 2)
@@ -31,7 +31,7 @@
headCells[i].addEventListener("click", rowAction(i), true);
}
if (gUI_showHidden) {
- gRows = Array.slice(gTBody.rows);
+ gRows = Array.from(gTBody.rows);
hiddenObjects = gRows.some(row => row.className == "hidden-object");
}
gTable.setAttribute("order", "");
@@ -60,7 +60,7 @@
}
function orderBy(column) {
if (!gRows)
- gRows = Array.slice(gTBody.rows);
+ gRows = Array.from(gTBody.rows);
var order;
if (gOrderBy == column) {
order = gTable.getAttribute("order") == "asc" ? "desc" : "asc";