From 4107bbc09385dee5323fed6921c00c77285cb17b Mon Sep 17 00:00:00 2001 From: Corentin Date: Mon, 20 Mar 2023 06:38:08 +0900 Subject: [PATCH] Remove innerHTML use * Bump to version 1.3.1 --- manifest.json | 2 +- popup.html | 2 +- popup.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/manifest.json b/manifest.json index b6072e9..f380b49 100644 --- a/manifest.json +++ b/manifest.json @@ -20,5 +20,5 @@ "storage", "clipboardWrite" ], - "version": "1.3.0" + "version": "1.3.1" } \ No newline at end of file diff --git a/popup.html b/popup.html index 7bad604..8ca0023 100644 --- a/popup.html +++ b/popup.html @@ -7,7 +7,7 @@
- +
diff --git a/popup.js b/popup.js index 6caccc4..c8e033f 100644 --- a/popup.js +++ b/popup.js @@ -132,7 +132,7 @@ function _notification() { if(notifications.length !== 0 && notification_timeout === null) { - notification_text_elt.innerHTML = notifications[0] + notification_text_elt.firstChild.data = notifications[0] notification_elt.classList.add('show') notification_timeout = setTimeout(_next_notification, notification_delay) }