From 48f29dff9a041f5e9d210c4ef1e4223f21221226 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Rodr=C3=ADguez?= Date: Sat, 2 Jan 2016 03:41:37 -0500 Subject: [PATCH] v0.10.2 - Removed button to dismiss error on unsupported browsers --- _compiled/app.js | 3 ++- _compiled/index.html | 4 ++-- app.coffee | 2 +- index.jade | 4 ++-- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/_compiled/app.js b/_compiled/app.js index 476ce36..ca3e03c 100644 --- a/_compiled/app.js +++ b/_compiled/app.js @@ -69,7 +69,8 @@ $scope.disabled = true; ngNotify.set('Please use latest Chrome, Firefox or Opera', { type: 'error', - sticky: true + sticky: true, + button: false }); } rtc = null; diff --git a/_compiled/index.html b/_compiled/index.html index 007dd94..6ba4dcd 100644 --- a/_compiled/index.html +++ b/_compiled/index.html @@ -16,7 +16,7 @@
-

βTorrent v0.10.1

+

βTorrent v0.10.2

@@ -82,7 +82,7 @@ ↑ {{client.uploadSpeed() | pbytes}}/s · Ratio: {{client.ratio | number:2}}
- +
diff --git a/app.coffee b/app.coffee index dd17df6..13c6252 100644 --- a/app.coffee +++ b/app.coffee @@ -53,7 +53,7 @@ app.controller 'BTorrentCtrl', ['$scope','$http','$log','$location', 'ngNotify', rtc = window.mozRTCPeerConnection || window.RTCPeerConnection || window.webkitRTCPeerConnection if !rtc? $scope.disabled = true - ngNotify.set 'Please use latest Chrome, Firefox or Opera', {type: 'error', sticky: true} + ngNotify.set 'Please use latest Chrome, Firefox or Opera', {type: 'error', sticky: true, button: false} rtc = null $scope.client = client diff --git a/index.jade b/index.jade index bca6f94..6cf2ae0 100644 --- a/index.jade +++ b/index.jade @@ -17,7 +17,7 @@ html(ng-app='BTorrent', lang='en') header h1 | βTorrent - span.version v0.10.1 + span.version v0.10.2 .container .row .four.columns @@ -86,7 +86,7 @@ html(ng-app='BTorrent', lang='en') | Ratio: {{client.ratio | number:2}} footer a.button(href="https://github.com/DiegoRBaquero/BTorrent/issues", target="_blank") - i.fa.fa-github.fa-5 + i.fa.fa-github | Suggest a feature / Report a bug i.fa.fa-comment br