Mercurial > prosody-modules
view mod_http_muc_log/static/timestamps.js @ 5493:cae3bb3dd45f
mod_http_oauth2: Document client registration requirements
Because they go a bit further than the basics in the RFC
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 26 May 2023 15:48:02 +0200 |
parents | 7bce75e74f86 |
children |
line wrap: on
line source
/* * Local timestamps */ (function () { var timeTags = document.getElementsByTagName("time"); var i = 0, tag, date; while(timeTags[i]) { tag = timeTags[i++]; if(date = tag.getAttribute("datetime")) { date = new Date(date); tag.textContent = date.toLocaleTimeString(navigator.language); tag.setAttribute("title", date.toString()); } } if(document.forms.length>0){ document.forms[0].elements.p.addEventListener("change", function() { document.forms[0].submit(); }); } })();