custom_dl.js 362 B

123456789101112131415
  1. $(document).ready(function() {
  2. $.ajaxSetup({ cache: false });
  3. $("a.dl-file").click(function() {
  4. var filename = $(this).text();
  5. var hash = $("h3[data-torrent-id]").attr("data-torrent-id");
  6. $.ajax({
  7. type: "POST",
  8. url: hash,
  9. data: { filename : filename }
  10. })
  11. .done(function( msg ) {
  12. $.notify( msg );
  13. });
  14. });
  15. });