aboutsummaryrefslogtreecommitdiff
path: root/js/redirectorpage.js
diff options
context:
space:
mode:
authorEinar Egilsson <einar@einaregilsson.com>2019-12-13 10:15:32 +0000
committerEinar Egilsson <einar@einaregilsson.com>2019-12-13 10:15:32 +0000
commitb473306d442b92123cf505dd634faeb141714614 (patch)
treeb0b35eba4f70e3ba06fce6d8d785237e738449f2 /js/redirectorpage.js
parent8ca4e7c6f7b9465b8dafdf8798bf609f9764ea0e (diff)
Replace .innerHTML with .textContent and bump version
Diffstat (limited to 'js/redirectorpage.js')
-rw-r--r--js/redirectorpage.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/redirectorpage.js b/js/redirectorpage.js
index ee2eec0..30e27a9 100644
--- a/js/redirectorpage.js
+++ b/js/redirectorpage.js
@@ -48,7 +48,7 @@ function toggleSyncSetting() {
}
function renderRedirects() {
- el('.redirect-rows').innerHTML = '';
+ el('.redirect-rows').textContent = '';
for (let i=0; i < REDIRECTS.length; i++) {
let r = REDIRECTS[i];
let node = template.cloneNode(true);