scroll up when input is focused

This commit is contained in:
Gabriel Bazán 2016-02-05 17:56:50 -03:00
commit fe18f7ea93
2 changed files with 4 additions and 3 deletions

View file

@ -195,9 +195,10 @@
</div> </div>
</div> </div>
<div class="left-inner-addon "> <div id="searchLabel" class="left-inner-addon ">
<i class="fi-magnifying-glass"></i> <i class="fi-magnifying-glass"></i>
<input ng-focus="home.formFocus(true)" <input ng-click="home.searchInput()"
ng-focus="home.formFocus(true)"
ng-blur="home.formFocus(false)" ng-blur="home.formFocus(false)"
type="text" type="text"
class="form-control" class="form-control"

View file

@ -831,7 +831,7 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
}, 1); }, 1);
}; };
// subscription // subscription
this.setOngoingProcess = function(name) { this.setOngoingProcess = function(name) {
var self = this; var self = this;
self.blockUx = !!name; self.blockUx = !!name;