12 lines
308 B
Plaintext
12 lines
308 B
Plaintext
|
|
func Components.QueueSZ(tytd)
|
|
{
|
|
var vid = tytd.CurrentVideo;
|
|
tytd.Mutex.Lock();
|
|
|
|
|
|
var html = <b hx-trigger="every 10000ms" hx-target="this" hx-push-url="false" hx-indicator="none" hx-get="./queue-size" hx-swap="outerHTML">{tytd.VideoQueueCount}</b>;
|
|
|
|
tytd.Mutex.Unlock();
|
|
return html;
|
|
} |