mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 09:25:04 +00:00
27 lines
560 B
JavaScript
27 lines
560 B
JavaScript
|
$(function () {
|
||
|
$('.imdbstars').qtip({
|
||
|
content: {
|
||
|
text: function(event, api) {
|
||
|
// Retrieve content from custom attribute of the $('.selector') elements.
|
||
|
return $(this).attr('qtip-content');
|
||
|
}
|
||
|
},
|
||
|
show: {
|
||
|
solo: true
|
||
|
},
|
||
|
position: {
|
||
|
viewport: $(window),
|
||
|
my: 'right center',
|
||
|
at: 'center left',
|
||
|
adjust: {
|
||
|
y: 0,
|
||
|
x: -2
|
||
|
}
|
||
|
},
|
||
|
style: {
|
||
|
classes: 'qtip-dark qtip-rounded qtip-shadow'
|
||
|
}
|
||
|
});
|
||
|
});
|
||
|
|