From e5a0f3b0ab3ebd9fa0212965378409cc2c2a1539 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Rodr=C3=ADguez?= Date: Fri, 25 Mar 2016 00:48:18 -0300 Subject: [PATCH] Cleaned --- app.coffee | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app.coffee b/app.coffee index be06c78..fbdcc65 100644 --- a/app.coffee +++ b/app.coffee @@ -60,6 +60,7 @@ app.controller 'BTorrentCtrl', ['$scope','$rootScope','$http','$log','$location' $rootScope.seedFiles = (files) -> if files? && files.length > 0 + opts = {} if files.length == 1 dbg 'Seeding file ' + files[0].name else @@ -68,13 +69,12 @@ app.controller 'BTorrentCtrl', ['$scope','$rootScope','$http','$log','$location' opts.name = name $rootScope.client.processing = true $rootScope.client.seed files, opts, $rootScope.onSeed - delete opts.name $rootScope.openTorrentFile = (file) -> if file? dbg 'Adding torrent file ' + file.name $rootScope.client.processing = true - $rootScope.client.add file, opts, $rootScope.onTorrent + $rootScope.client.add file, $rootScope.onTorrent $rootScope.client.on 'error', (err, torrent) -> $rootScope.client.processing = false @@ -85,7 +85,7 @@ app.controller 'BTorrentCtrl', ['$scope','$rootScope','$http','$log','$location' if magnet? && magnet.length > 0 dbg 'Adding magnet/hash ' + magnet $rootScope.client.processing = true - $rootScope.client.add magnet, opts, onTorrent || $rootScope.onTorrent + $rootScope.client.add magnet, onTorrent || $rootScope.onTorrent $rootScope.destroyedTorrent = (err) -> if err @@ -214,7 +214,7 @@ app.controller 'ViewCtrl', ['$scope','$rootScope','$http','$log','$location', 'n duration: 2000 html: true - onTorrent = (torrent, isSeed) -> + onTorrent = (torrent) -> $rootScope.viewerStyle = {'margin-top': '-20px', 'text-align': 'center'} dbg torrent.magnetURI torrent.safeTorrentFileURL = torrent.torrentFileBlobURL