mirror of
https://github.com/twisterarmy/twister-html.git
synced 2025-01-13 16:37:52 +00:00
fix webtorrent file selection event
This commit is contained in:
parent
eee3f958c3
commit
045d443072
@ -390,12 +390,10 @@ function initWebTorrent() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// setup attach button
|
// setup attach button
|
||||||
$(".post-area-attach").show();
|
$(".post-area-attach").show();
|
||||||
var fileInput = $("#fileInputAttach");
|
$(document).on("change", "#fileInputAttach", function(event) {
|
||||||
fileInput.on('change', function(event) {
|
var file = event.target.files[0];
|
||||||
var file = fileInput[0].files[0];
|
|
||||||
var seedingTorrent = undefined;
|
var seedingTorrent = undefined;
|
||||||
for (var i = 0; i < WebTorrentClient.torrents.length; i++) {
|
for (var i = 0; i < WebTorrentClient.torrents.length; i++) {
|
||||||
var torrent = WebTorrentClient.torrents[i];
|
var torrent = WebTorrentClient.torrents[i];
|
||||||
|
Loading…
Reference in New Issue
Block a user