Skip to content

Commit

Permalink
Remove autofocus from login modal
Browse files Browse the repository at this point in the history
  • Loading branch information
achamely committed Oct 6, 2014
1 parent e34cfc2 commit 650f7a0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions www/partials/login_modal.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ <h3>{{login.title}}</h3>
<div class="row">
<div class="form-group col-xs-10 col-xs-push-1">
<label for="inputUUID">Wallet ID</label>
<input type="text" class="form-control" ng-disabled="loginInProgress || login.disable" ng-model="login.uuid" id="inputUUID" value="{{ uuid }}" auto-focus="!login.uuid">
<input type="text" class="form-control" ng-disabled="loginInProgress || login.disable" ng-model="login.uuid" id="inputUUID" value="{{ uuid }}">
</div>
</div>
<div class="row">
<div class="form-group col-xs-10 col-xs-push-1">
<label for="inputPassword">Password</label>
<input type="password" class="form-control" ng-disabled="loginInProgress" ng-model="login.password" id="inputPassword" auto-focus="login.uuid">
<input type="password" class="form-control" ng-disabled="loginInProgress" ng-model="login.password" id="inputPassword">
</div>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions www/partials/login_modal_fs.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ <h3>{{login.title}}</h3>
<div class="row">
<div class="form-group col-xs-10 col-xs-push-1">
<label for="inputUUID">Wallet ID</label>
<input type="text" class="form-control" ng-disabled="loginInProgress || login.disable" ng-model="login.uuid" id="inputUUID" value="{{ uuid }}" auto-focus="!login.uuid">
<input type="text" class="form-control" ng-disabled="loginInProgress || login.disable" ng-model="login.uuid" id="inputUUID" value="{{ uuid }}">
</div>
</div>
<div class="row">
<div class="form-group col-xs-10 col-xs-push-1">
<label for="inputPassword">Password</label>
<input type="password" class="form-control" ng-disabled="loginInProgress" ng-model="login.password" id="inputPassword" auto-focus="login.uuid">
<input type="password" class="form-control" ng-disabled="loginInProgress" ng-model="login.password" id="inputPassword">
</div>
</div>
</div>
Expand Down

0 comments on commit 650f7a0

Please sign in to comment.