/*
 * Create tooltips for any songs in the playlist in the left sidebar that have
 * comments.
 */

jQuery(function setup_comment_tooltips($) {
    $('#recently_heard span.song[title]').qtip({
        style: {
            name: 'dark',
            tip: true,
            border: {radius: 4}
        },
        position: {
            corner: {
                target: 'rightMiddle',
                tooltip: 'leftBottom'
            }
        }
    });
});

