mirror of https://github.com/nealey/vail.git
Indicate repeater change in toast
This commit is contained in:
parent
82d0787ef8
commit
e51faa5120
|
@ -57,7 +57,7 @@ class Vail {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fill in the name of our repeater
|
// Fill in the name of our repeater
|
||||||
let repeater = decodeURI(window.location.hash.split("#")[1] || "General Chaos")
|
let repeater = decodeURI(window.location.hash.split("#")[1] || "")
|
||||||
let repeaterElement = document.querySelector("#repeater")
|
let repeaterElement = document.querySelector("#repeater")
|
||||||
repeaterElement.addEventListener("change", e => this.setRepeater(e.target.value.trim()))
|
repeaterElement.addEventListener("change", e => this.setRepeater(e.target.value.trim()))
|
||||||
repeaterElement.value = unescape(repeater)
|
repeaterElement.value = unescape(repeater)
|
||||||
|
@ -74,6 +74,9 @@ class Vail {
|
||||||
}
|
}
|
||||||
|
|
||||||
setRepeater(name) {
|
setRepeater(name) {
|
||||||
|
if (!name || (name == "")) {
|
||||||
|
name = "General Chaos"
|
||||||
|
}
|
||||||
this.repeaterName = name
|
this.repeaterName = name
|
||||||
|
|
||||||
// Set window URL
|
// Set window URL
|
||||||
|
@ -84,6 +87,8 @@ class Vail {
|
||||||
if (hash != window.location.hash) {
|
if (hash != window.location.hash) {
|
||||||
window.location.hash = hash
|
window.location.hash = hash
|
||||||
}
|
}
|
||||||
|
document.querySelector("#repeater").value = name
|
||||||
|
toast(`Now using repeater: ${name}`)
|
||||||
|
|
||||||
let wsUrl = new URL("chat", window.location)
|
let wsUrl = new URL("chat", window.location)
|
||||||
wsUrl.protocol = wsUrl.protocol.replace("http", "ws")
|
wsUrl.protocol = wsUrl.protocol.replace("http", "ws")
|
||||||
|
|
Loading…
Reference in New Issue