mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Series grid updated to remove Telerik MVC Grid.
This commit is contained in:
@@ -1,4 +1,15 @@
|
||||
function grid_onError(e) {
|
||||
/* Click on row, show details */
|
||||
$('.seriesTable a').live('click', function () {
|
||||
var link = $(this).attr('href');
|
||||
window.location = link;
|
||||
event.preventDefault();
|
||||
});
|
||||
|
||||
$('.seriesTable tr td:not(:last-child)').live('click', function () {
|
||||
$(this).parent('tr').next('.detail-view').toggle();
|
||||
});
|
||||
|
||||
function grid_onError(e) {
|
||||
//Suppress the alert
|
||||
e.preventDefault();
|
||||
}
|
||||
|
Reference in New Issue
Block a user