From 76befd578a87711ed8322b28a7d1a034c1624ec7 Mon Sep 17 00:00:00 2001 From: Alexis Degrugillier Date: Sun, 27 May 2018 20:49:35 +0200 Subject: [PATCH] Minor fixes following Mozilla approval process --- popup/load.content.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/popup/load.content.js b/popup/load.content.js index 0ea9d2c..102bfaa 100644 --- a/popup/load.content.js +++ b/popup/load.content.js @@ -34,7 +34,7 @@ function drawContent() { }); } else { const emptyItem = document.createElement('p'); - emptyItem.innerHTML = browser.i18n.getMessage('popupContentEmpty'); + emptyItem.textContent = browser.i18n.getMessage('popupContentEmpty'); document.querySelector('#popup-content').appendChild(emptyItem); } });