Bratanov / community-driven-radio

A radio station driven by the community
10 stars 1 forks source link

Bug / Chat scroll is "going up" when new song is added #8

Closed Bratanov closed 8 years ago

Bratanov commented 8 years ago

In badass-client.js we have this:

socket.on('new_song', function(song) {
    $('#text').prepend('<p>Now plaing: ' + song + '</p>');
    play(song);
    console.log(song);
});

It should use the addMessage function instead of prepending the chat (song should be appended, not prepended and should be scrolled to bottom)