diff --git a/localization.js b/localization.js index 9bce918c..9df3b395 100644 --- a/localization.js +++ b/localization.js @@ -56,6 +56,9 @@ function tNodeList(nodes) { case 'text': node.insertBefore(document.createTextNode(value), node.firstChild); break; + case 'text-append': + node.appendChild(document.createTextNode(value)); + break; case 'html': node.insertAdjacentHTML('afterbegin', value); break; diff --git a/options/index.html b/options/index.html index a48471bf..98978a87 100644 --- a/options/index.html +++ b/options/index.html @@ -1,7 +1,7 @@
-