Created
April 25, 2013 07:42
-
-
Save benlumley/5458138 to your computer and use it in GitHub Desktop.
Change to wp-chat js to make scroll work
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// change | |
jQuery('#chat-area-'+pid).animate({ scrollTop: jQuery('#chat-area-'+pid).attr("scrollHeight") }, 2000); | |
// To: | |
jQuery('#chat-area-'+pid).animate({ scrollTop: jQuery('#chat-area-'+pid)[0].scrollHeight }, 2000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment