Mercurial > prosody-modules
view mod_muc_lang/mod_muc_lang.lua @ 5627:3a5cf8d80089
mod_http_oauth2: Tweak method of centering the UI
The percentage here was relative to the viewport width, which on some
very wide screens may put the UI slightly outside of the view, requiring
scrolling to see.
By using a unit relative to the height of the viewport, this is avoided
and should work better. But no guarantees, it's still possible to resize
the browser or adjust font sizes so that the UI goes out of view.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 31 Jul 2023 07:28:09 +0200 |
parents | ef5d52ca31bb |
children |
line wrap: on
line source
assert(module:depends"muc".rooms, "This module is not required with Prosody >= 0.11"); module:hook("muc-config-form", function(event) local room, form = event.room, event.form; table.insert(form, { name = "muc#roomconfig_lang", type = "text-single", label = "Natural Language for Room Discussions", value = room._data.language, }); end); module:hook("muc-config-submitted", function(event) local room, fields, changed = event.room, event.fields, event.changed; local new = fields["muc#roomconfig_lang"]; if new ~= room._data.language then room._data.language = new; if type(changed) == "table" then changed["muc#roomconfig_lang"] = true; else event.changed = true; end end end); module:hook("muc-disco#info", function (event) local room, form, formdata = event.room, event.form, event.formdata; table.insert(form, { name = "muc#roominfo_lang", value = room._data.language, }); formdata["muc#roominfo_lang"] = room._data.language; end);