diff --git a/public/views/buyCoinbase.html b/public/views/buyCoinbase.html index 3f14b6e96..62684c5a1 100644 --- a/public/views/buyCoinbase.html +++ b/public/views/buyCoinbase.html @@ -43,12 +43,12 @@
- - diff --git a/public/views/buyGlidera.html b/public/views/buyGlidera.html index 6eec1f7af..f2754e627 100644 --- a/public/views/buyGlidera.html +++ b/public/views/buyGlidera.html @@ -49,12 +49,12 @@
- - @@ -94,7 +94,7 @@

- + diff --git a/public/views/create.html b/public/views/create.html index c6755adcb..ef91c0977 100644 --- a/public/views/create.html +++ b/public/views/create.html @@ -87,7 +87,7 @@
diff --git a/public/views/import.html b/public/views/import.html index 6629c13fb..37c561d13 100644 --- a/public/views/import.html +++ b/public/views/import.html @@ -194,7 +194,7 @@
diff --git a/public/views/join.html b/public/views/join.html index c0b82078e..b1deb7d8c 100644 --- a/public/views/join.html +++ b/public/views/join.html @@ -73,7 +73,7 @@
diff --git a/public/views/modals/customized-amount.html b/public/views/modals/customized-amount.html index 75129d24f..755b38b1f 100644 --- a/public/views/modals/customized-amount.html +++ b/public/views/modals/customized-amount.html @@ -60,7 +60,7 @@ Amount
- {{unitName}} @@ -70,7 +70,7 @@
- {{ alternativeIsoCode }} diff --git a/public/views/sellCoinbase.html b/public/views/sellCoinbase.html index cb1c860d4..6de014946 100644 --- a/public/views/sellCoinbase.html +++ b/public/views/sellCoinbase.html @@ -54,12 +54,12 @@
- - diff --git a/public/views/sellGlidera.html b/public/views/sellGlidera.html index e2f62a9e9..160e33656 100644 --- a/public/views/sellGlidera.html +++ b/public/views/sellGlidera.html @@ -48,12 +48,12 @@
- - @@ -94,7 +94,7 @@

- + diff --git a/public/views/walletHome.html b/public/views/walletHome.html index cfbecd318..d74f7919b 100644 --- a/public/views/walletHome.html +++ b/public/views/walletHome.html @@ -427,7 +427,7 @@ Amount @@ -436,7 +436,7 @@ diff --git a/src/js/directives/directives.js b/src/js/directives/directives.js index 491cebf64..a73b74b5e 100644 --- a/src/js/directives/directives.js +++ b/src/js/directives/directives.js @@ -325,4 +325,17 @@ angular.module('copayApp.directives') replace: true, templateUrl: 'views/includes/available-balance.html' } + }) + .directive('ignoreMouseWheel', function($rootScope, $timeout) { + return { + restrict: 'A', + link: function(scope, element, attrs) { + element.bind('mousewheel', function(event) { + element[0].blur(); + $timeout(function() { + element[0].focus(); + }, 1); + }); + } + } });