Initial commit
This commit is contained in:
7
third-party/mexui/Core/Control/Password.js
vendored
Normal file
7
third-party/mexui/Core/Control/Password.js
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
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);
|
||||
Reference in New Issue
Block a user