inputPassword.ts 347 B

1234567891011121314
  1. import { InputText } from "./inputText";
  2. /**
  3. * Class used to create a password control
  4. */
  5. export class InputPassword extends InputText {
  6. protected _beforeRenderText(text: string): string {
  7. let txt = "";
  8. for (let i = 0; i < text.length; i++) {
  9. txt += "\u2022";
  10. }
  11. return txt;
  12. }
  13. }