Viewing 4 replies - 1 through 4 (of 4 total)
  • Is it really such a secret that there simply have to be no reaction for this question in all cases people asked? Thanks for the plugin.

    +1 on this, I’m very interested to find a solution, even changing in code

    Okay, so if you don’t mind hacking quick-chat code, here is the solution:

    first of all, turn quick-chat to debugging mode, so quick-chat will use javascripts .dev files instead of minified ones.

    then go to quick-chat/js/quick-chat-core.dev.js and find lines:

    jQuery(history_container).append(quick_chat.single_message_html (there should be three of them, and instead of append use prepend (so it will insert content on top of elements, instead of bottom)

    and in the end find jQuery(history_container).animate(…
    and use this instead:
    jQuery(history_container).animate({scrollTop: 0}, 500);

    this will scroll to top when new message comes, instead of scrolling bottom.

    cheers

    I would be very happy if Marko implement it on the plugin.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Show Chat Messages In Reverse Chronological Order’ is closed to new replies.