Guest User

Untitled

a guest
Nov 22nd, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. // if window is collapsed, hide conversation menu options
  2. if ( panel_body.css('display') == 'none' ) {
  3. panel.find('.add-people-to-chat,\
  4. .add-user-to-contacts,\
  5. .contact-request-sent').hide();
  6. conversation_heading = panel.find('.conversation-heading');
  7. conversation_heading.css('width', '360px');
  8.  
  9. } else { // show conversation menu options
  10. conversation_heading = panel.find('.conversation-heading');
  11. conversation_heading.css('width', '320px');
  12. panel.find('.add-people-to-chat,\
  13. .add-user-to-contacts,\
  14. .contact-request-sent').show();
  15. // focus textarea
  16. $('form textarea', this).focus();
  17. }
Add Comment
Please, Sign In to add comment