You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I’d like to disable the download button in the embedded player for compliance with my site’s requirements. And when the player initializes, it logs several messages to the console. Is there a way to customize these logs or turn them off altogether
I’d like to disable the download button in the embedded player for compliance with my site’s requirements. And when the player initializes, it logs several messages to the console. Is there a way to customize these logs or turn them off altogether
window.webtor.push({
id: 'player',
width: '100%',
magnet: 'magnet:?xt=urn:btih:' + info_hash + '&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce',
on: function (e) {
if (e.name == window.webtor.INITED) {
e.player.play();
document.getElementById('loading').style.display = 'none';
document.getElementById('player').style.display = 'block';
}
if (e.name == window.webtor.TORRENT_ERROR) {
console.log('Torrent error!');
}
},
poster: 'https://m.media-amazon.com/images/M/MV5BMzYyNjI0MzA3M15BMl5BanBnXkFtZTgwMDA3Nzc5NzE@._V1_.jpg',
imdbId: '23558280',
lang: 'en',
userLang: '',
});
The text was updated successfully, but these errors were encountered: