summaryrefslogtreecommitdiff
path: root/lib/js/urweb.js
diff options
context:
space:
mode:
authorGravatar Simon Van Casteren <simonvancasteren@localhost.localdomain>2019-12-13 11:46:22 +0100
committerGravatar Simon Van Casteren <simonvancasteren@localhost.localdomain>2019-12-13 11:46:22 +0100
commit34bb8fae33a75868060838cda98bb46e0257ca0c (patch)
treec6c5c4dfbcc49444f14be479cf2d7e6501203878 /lib/js/urweb.js
parent870ce334b835614bab3f114b2aa57617f699c6be (diff)
parent2bca6e48c0ea8043c5300f4ebdefa5167e6472bf (diff)
Merge remote-tracking branch 'origin/master' into typeOf
Diffstat (limited to 'lib/js/urweb.js')
-rw-r--r--lib/js/urweb.js12
1 files changed, 11 insertions, 1 deletions
diff --git a/lib/js/urweb.js b/lib/js/urweb.js
index 66d427c8..59e5ad2c 100644
--- a/lib/js/urweb.js
+++ b/lib/js/urweb.js
@@ -2135,6 +2135,16 @@ function active(s) {
}
}
+function listen(s, onchange) {
+ var x = document.createElement("script");
+ x.dead = false;
+ x.signal = s;
+ x.sources = null;
+ x.closures = null;
+ x.recreate = onchange;
+ populate(x);
+}
+
function input(x, s, recreate, type, name) {
if (name) x.name = name;
if (type) x.type = type;
@@ -3270,7 +3280,7 @@ function confrm(s) {
}
function currentUrl() {
- return window.location;
+ return window.location.toString();
}