summary refs log tree commit diff
path: root/lib/htmlbuilder.js
diff options
context:
space:
mode:
authorWlodekM <[email protected]>2024-12-01 12:32:53 +0200
committerWlodekM <[email protected]>2024-12-01 12:32:53 +0200
commit84ebada2cc3a7f6f094d249ceae0df49f66e55bc (patch)
tree470b9623677e0144d023ae99e6bb564fa89043ba /lib/htmlbuilder.js
parent18b3dc1aeaeac7114f68ea0eab9ad59c7991b0ae (diff)
wip user popup
Diffstat (limited to 'lib/htmlbuilder.js')
-rw-r--r--lib/htmlbuilder.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/htmlbuilder.js b/lib/htmlbuilder.js
index 483b77b..110da39 100644
--- a/lib/htmlbuilder.js
+++ b/lib/htmlbuilder.js
@@ -8,7 +8,7 @@ function makeSigmaHtmlPlusElement(elem) {
         elem.innerHTML = html;
         return elem;
     }
-    elem.text = function (text) {
+    elem.text = elem.txt = function (text) {
         elem.innerText = text;
         return elem;
     }