v 0.14.1 - Lowered notifications display time

This commit is contained in:
Diego Rodríguez 2016-02-28 14:23:45 -03:00
parent 09080f231b
commit 79bfa46319
2 changed files with 5 additions and 5 deletions

View file

@ -17,7 +17,7 @@ html(ng-app='BTorrent', lang='en')
header header
h1 h1
| βTorrent | βTorrent
span.version v0.14.0 span.version v0.14.1
div.views(ng-show='$root.client.torrents.length == 0') div.views(ng-show='$root.client.torrents.length == 0')
a(ng-href='/#') Full a(ng-href='/#') Full
| | | |

View file

@ -63,7 +63,7 @@ app = angular.module 'BTorrent', ['ngRoute', 'ui.grid', 'ui.grid.resizeColumns',
app.controller 'BTorrentCtrl', ['$scope','$rootScope','$http','$log','$location', 'ngNotify', ($scope, $rootScope, $http, $log, $location, ngNotify) -> app.controller 'BTorrentCtrl', ['$scope','$rootScope','$http','$log','$location', 'ngNotify', ($scope, $rootScope, $http, $log, $location, ngNotify) ->
ngNotify.config ngNotify.config
duration: 10000 duration: 5000
html: true html: true
if !WebTorrent.WEBRTC_SUPPORT? if !WebTorrent.WEBRTC_SUPPORT?
@ -169,7 +169,7 @@ app.controller 'BTorrentCtrl', ['$scope','$rootScope','$http','$log','$location'
app.controller 'FullCtrl', ['$scope','$rootScope','$http','$log','$location', 'ngNotify', ($scope, $rootScope, $http, $log, $location, ngNotify) -> app.controller 'FullCtrl', ['$scope','$rootScope','$http','$log','$location', 'ngNotify', ($scope, $rootScope, $http, $log, $location, ngNotify) ->
ngNotify.config ngNotify.config
duration: 10000 duration: 5000
html: true html: true
$scope.addMagnet = -> $scope.addMagnet = ->
@ -216,7 +216,7 @@ app.controller 'FullCtrl', ['$scope','$rootScope','$http','$log','$location', 'n
app.controller 'DownloadCtrl', ['$scope','$rootScope','$http','$log','$location', 'ngNotify', ($scope, $rootScope, $http, $log, $location, ngNotify) -> app.controller 'DownloadCtrl', ['$scope','$rootScope','$http','$log','$location', 'ngNotify', ($scope, $rootScope, $http, $log, $location, ngNotify) ->
ngNotify.config ngNotify.config
duration: 10000 duration: 5000
html: true html: true
$scope.addMagnet = -> $scope.addMagnet = ->
@ -233,7 +233,7 @@ app.controller 'DownloadCtrl', ['$scope','$rootScope','$http','$log','$location'
app.controller 'ViewCtrl', ['$scope','$rootScope','$http','$log','$location', 'ngNotify', ($scope, $rootScope, $http, $log, $location, ngNotify) -> app.controller 'ViewCtrl', ['$scope','$rootScope','$http','$log','$location', 'ngNotify', ($scope, $rootScope, $http, $log, $location, ngNotify) ->
ngNotify.config ngNotify.config
duration: 10000 duration: 2000
html: true html: true
onTorrent = (torrent, isSeed) -> onTorrent = (torrent, isSeed) ->