1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-29 12:20:51 +02:00
ttrss/js/deprecated.js
Andrew Dolgov 1bfe1d7b31 simplify error handling
* less convoluted exception dialogs
* use window.onerror for the majority of exception catching/reporting
* remove most of now useless try/catch blocks
* report stacktrace instead of manually specified error locations
2017-03-04 14:34:44 +03:00

24 lines
349 B
JavaScript

function selectTableRow(r, do_select) {
if (do_select) {
r.addClassName("Selected");
} else {
r.removeClassName("Selected");
}
}
function selectTableRowById(elem_id, check_id, do_select) {
var row = $(elem_id);
if (row) {
selectTableRow(row, do_select);
}
var check = $(check_id);
if (check) {
check.checked = do_select;
}
}