mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
Services list in readme and in the doc generator (#2091)
* add services list in readme and in the autogenerator * update tslint 5.5.0
This commit is contained in:
@@ -269,9 +269,9 @@ export class LoginComponent implements OnInit {
|
||||
toggleShowPassword() {
|
||||
this.isPasswordShow = !this.isPasswordShow;
|
||||
if (this.isPasswordShow) {
|
||||
(<HTMLInputElement>document.getElementById('password')).type = 'text';
|
||||
(<HTMLInputElement> document.getElementById('password')).type = 'text';
|
||||
} else {
|
||||
(<HTMLInputElement>document.getElementById('password')).type = 'password';
|
||||
(<HTMLInputElement> document.getElementById('password')).type = 'password';
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user