2014-05-26 02:29:22 -04:00
|
|
|
$(function () {
|
2014-05-26 14:07:10 -04:00
|
|
|
$('.title a').each(function () {
|
2014-05-26 02:29:22 -04:00
|
|
|
match = $(this).parent().attr("id").match(/^scene_exception_(\d+)$/);
|
|
|
|
$(this).qtip({
|
|
|
|
content: {
|
|
|
|
text: 'Loading...',
|
|
|
|
ajax: {
|
|
|
|
url: $("#sbRoot").val() + '/home/sceneExceptions',
|
|
|
|
type: 'GET',
|
|
|
|
data: {
|
|
|
|
show: match[1]
|
|
|
|
},
|
|
|
|
success: function (data, status) {
|
|
|
|
this.set('content.text', data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
show: {
|
|
|
|
solo: true
|
|
|
|
},
|
|
|
|
position: {
|
|
|
|
viewport: $(window),
|
|
|
|
my: 'top center',
|
|
|
|
at: 'bottom center',
|
|
|
|
adjust: {
|
|
|
|
y: 3,
|
|
|
|
x: 0
|
|
|
|
}
|
|
|
|
},
|
|
|
|
style: {
|
|
|
|
tip: {
|
|
|
|
corner: true,
|
|
|
|
method: 'polygon'
|
|
|
|
},
|
2014-05-26 14:07:10 -04:00
|
|
|
classes: 'qtip-rounded qtip-shadow ui-tooltip-sb'
|
2014-05-26 02:29:22 -04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|