all repos — honk @ 2870ad7b53f0154c1584f7a5243801b2c5da5124

my fork of honk

views/misc.js (view raw)

 1function expandstuff() {
 2	var els = document.querySelectorAll(".honk details")
 3	for (var i = 0; i < els.length; i++) {
 4		els[i].open = true
 5	}
 6}
 7
 8function updatedonker(el) {
 9	el = el.parentElement
10	el.children[1].textContent = el.children[0].value.slice(-20)
11}
12
13(function() {
14	var expand = document.querySelector("button.expand")
15	if (expand) {
16		expand.onclick = expandstuff
17	}
18
19	var donk = document.querySelector("#donker input")
20	if (donk) {
21		donk.onchange = function() {
22			updatedonker(this);
23		}
24	}
25})()