mirror of
https://github.com/astro/buzzrelay.git
synced 2024-11-21 19:51:00 +00:00
19 lines
638 B
JavaScript
19 lines
638 B
JavaScript
(function() {
|
|
function setup(id) {
|
|
var inputEl = document.getElementById(id);
|
|
var preEl = document.getElementById(id + "-url");
|
|
function onChange(ev) {
|
|
setTimeout(function() {
|
|
var value = encodeURIComponent(inputEl.value.replace(/^#/, ""));
|
|
preEl.innerText = value ?
|
|
"https://" + document.location.host + "/" + id + "/" + value :
|
|
"\n";
|
|
}, 10);
|
|
}
|
|
inputEl.addEventListener('change', onChange);
|
|
inputEl.addEventListener('keyup', onChange);
|
|
}
|
|
|
|
setup("tag");
|
|
setup("instance");
|
|
})()
|