Skip to content

Commit

Permalink
#unit-test added fa fa-eye instead of glyphicons
Browse files Browse the repository at this point in the history
  • Loading branch information
thehoneymad committed Jun 23, 2016
1 parent e56e576 commit 04e07eb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/account/login/login.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ <h4 class="modal-title">Login</h4>
<input ngControl="password" [disabled]="loginStatus=='IN_PROGRESS'" type="password" id="login-password" class="form-control" placeholder="Enter your Password" [(ngModel)]="loginModel.Password" [ngFormControl]="loginForm.controls['password']">
<span class="input-group-btn">
<button ncShowPassword [ncPasswordControl]="'login-password'" type="button" class="btn btn-default" type="button">
<span class="glyphicon glyphicon-eye-open" style="height:20px"></span>
<span class="fa fa-eye"></span>
</button>
</span>
</div>
Expand Down
1 change: 0 additions & 1 deletion app/account/login/login.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ export class LoginService {
this.loggedIn = false;
}


login(loginModel: Login) {
let headers = new Headers();
let urlEncodedParam =
Expand Down
2 changes: 1 addition & 1 deletion app/account/signup/signup.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ <h4 class="modal-title">Sign Up</h4>
<input ngControl="password" type="password" id="sign-up-password" class="form-control" placeholder="Enter your password" [(ngModel)]="registrationModel.Password" [ngFormControl]="signupForm.controls['password']">
<span class="input-group-btn">
<button ncShowPassword [ncPasswordControl]="'sign-up-password'" type="button" id="btnpassword" class="btn btn-default" type="button">
<span class="glyphicon glyphicon-eye-open" style="height:20px"></span></button>
<span class="fa fa-eye"></span></button>
</span>
</div>
<control-message control="password"></control-message>
Expand Down

0 comments on commit 04e07eb

Please sign in to comment.