binary-newsreaderusenetqnaptautullifanartsickbeardtvseriesplexswizzinembyseedboxtvdbnzbgetsubtitlewebuiquickboxtraktkodistabletvshows
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.2 KiB
40 lines
1.2 KiB
$(function () {
|
|
$('.plotInfo').each(function () {
|
|
match = $(this).attr("id").match(/^plot_info_(\d+)_(\d+)_(\d+)$/);
|
|
$(this).qtip({
|
|
content: {
|
|
text: 'Loading...',
|
|
ajax: {
|
|
url: $("#sbRoot").val() + '/home/plotDetails',
|
|
type: 'GET',
|
|
data: {
|
|
show: match[1],
|
|
episode: match[3],
|
|
season: match[2]
|
|
},
|
|
success: function (data, status) {
|
|
this.set('content.text', data);
|
|
}
|
|
}
|
|
},
|
|
show: {
|
|
solo: true
|
|
},
|
|
position: {
|
|
viewport: $(window),
|
|
my: 'left center',
|
|
adjust: {
|
|
y: -10,
|
|
x: 2
|
|
}
|
|
},
|
|
style: {
|
|
tip: {
|
|
corner: true,
|
|
method: 'polygon'
|
|
},
|
|
classes: 'qtip-rounded qtip-shadow ui-tooltip-sb'
|
|
}
|
|
});
|
|
});
|
|
});
|
|
|