Files
GTA4RP/third-party/mexui/Core/Control/Password.js
2020-09-04 15:56:19 -05:00

7 lines
337 B
JavaScript

mexui.util.createControlConstructor('Password', false, function(window, x, y, w, h, text, styles, callback)
{
mexui.Control.TextInput.call(this, window, x, y, w, h, text, this.linkControlStyles('Password', styles), callback, false, true);
this.masked = true;
});
mexui.util.extend(mexui.Control.Password, mexui.Control.TextInput);