Gazelle/static/functions/notifications.js

44 lines
1.3 KiB
JavaScript
Raw Normal View History

2013-02-15 08:00:35 +00:00
function clearItem(torrentId) {
ajax.get("?action=notify_clear_item&torrentid=" + torrentId + "&auth=" + authkey, function() {
$("#torrent" + torrentId).remove();
});
2012-02-09 08:00:20 +00:00
}
2013-02-15 08:00:35 +00:00
function clearSelected(filterId) {
var checkBoxes, checkedBoxes = [];
if (filterId) {
2013-06-28 08:01:04 +00:00
var filterForm = $('#notificationform_' + filterId);
checkBoxes = $('.notify_box_' + filterId, filterForm);
2013-02-15 08:00:35 +00:00
} else {
2013-06-27 08:01:06 +00:00
checkBoxes = $('.notify_box');
2013-02-15 08:00:35 +00:00
}
for (var i = checkBoxes.length - 1; i >= 0; i--) {
if (checkBoxes[i].checked) {
checkedBoxes.push(checkBoxes[i].value);
}
}
ajax.get("?action=notify_clear_items&torrentids=" + checkedBoxes.join(',') + "&auth=" + authkey, function() {
for (var i = checkedBoxes.length - 1; i >= 0; i--) {
$('#torrent' + checkedBoxes[i]).remove();
}
});
}
2013-09-03 08:01:00 +00:00
$(document).ready(function () {
var notifyBoxes = $('.notify_box');
notifyBoxes.keydown(function(e) {
var nextBox, index = notifyBoxes.index($(this));
if (index > 0 && e.which === 75) { // K
nextBox = notifyBoxes.get(index-1);
} else if (index < notifyBoxes.size()-1 && e.which === 74) { // J
nextBox = notifyBoxes.get(index+1);
} else if (e.which === 88) {
$(this).prop('checked', !$(this).prop('checked'));
}
if (nextBox) {
nextBox.focus();
$(window).scrollTop($(nextBox).position()['top']-$(window).height()/4);
}
});
});