summaryrefslogtreecommitdiffstats
path: root/static/functions/notifications.js
blob: df3e4b12217902e1f7d443241f10ab0fd30e1d01 (plain)
1
2
3
4
5
function Clear(torrentid) {
	ajax.get("?action=notify_clearitem&torrentid=" + torrentid + "&auth=" + authkey, function() {
		$("#torrent" + torrentid).remove();
	});
}