From 0878ad2b0a0d3af5db66cc6a4f7d882e17a13365 Mon Sep 17 00:00:00 2001 From: hackademix Date: Fri, 1 Feb 2019 01:17:58 +0100 Subject: Remove usage of non-standard Array methods. --- src/content/ftp.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/content') 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"; -- cgit v1.2.3