Software /
code /
prosody-modules
File
mod_http_muc_log/static/timestamps.js @ 5939:db5128d1a16c
mod_report_forward: Fix traceback when reporting a specific message (thanks singpolyma)
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 30 May 2024 17:55:07 +0100 |
parent | 5118:7bce75e74f86 |
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(); }); } })();