CC-3850: Use qTip instead of custom tooltips

-done
This commit is contained in:
denise 2012-06-04 11:22:23 -04:00
parent c521e3c545
commit a3754be31a
7 changed files with 70 additions and 54 deletions

View file

@ -257,4 +257,25 @@ $(document).ready(function() {
at: "right center"
},
})
$(".icecast_metadata_help_icon").qtip({
content: {
text: "This option enables metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option."
},
hide: {
delay: 500,
fixed: true
},
style: {
border: {
width: 0,
radius: 4
},
classes: "ui-tooltip-dark ui-tooltip-rounded"
},
position: {
my: "left bottom",
at: "right center"
},
})
});