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

  1. function showPresence(n)
  2. {
  3. n.style.display = 'none';
  4. buttons = document.querySelectorAll('.presence_button.merged');
  5. for(i = 0; i < buttons.length; i++) {
  6. buttons[i].style.display = 'inline';
  7. }
  8. }
  9. movim_add_onload(function()
  10. {
  11. movim_textarea_autoheight(document.querySelector('#profile #status'));
  12. });