mirror of https://github.com/movim/movim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
330 B
13 lines
330 B
function showPresence(n)
|
|
{
|
|
n.style.display = 'none';
|
|
buttons = document.querySelectorAll('.presence_button.merged');
|
|
for(i = 0; i < buttons.length; i++) {
|
|
buttons[i].style.display = 'inline';
|
|
}
|
|
}
|
|
|
|
movim_add_onload(function()
|
|
{
|
|
movim_textarea_autoheight(document.querySelector('#profile #status'));
|
|
});
|