mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 13:33:34 -07:00
Series grid updated to remove Telerik MVC Grid.
This commit is contained in:
parent
ea86ce2fcb
commit
a330348c8e
11 changed files with 307 additions and 156 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue