mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-25 22:36:59 -04: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();
|
||||
}
|
||||
|
||||
@@ -143,9 +143,4 @@ function saveEpisodeIgnore(episodeId, ignored) {
|
||||
alert("Sorry! We could save the ignore settings for Episode: " + episodeId + " at this time. " + error);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/* Click on row, show details */
|
||||
$('.seriesTable tr td:not(:last-child)').live('click', function () {
|
||||
$(this).parent('tr').next('.detail-view').toggle();
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user