Skip to content

Instantly share code, notes, and snippets.

@mauropm
Created May 13, 2014 22:47
Show Gist options
  • Save mauropm/0d509f7967330a583869 to your computer and use it in GitHub Desktop.
Save mauropm/0d509f7967330a583869 to your computer and use it in GitHub Desktop.
Password mask test for S3
var win = Ti.UI.createWindow({
backgroundColor:'white',
});
var pm = Ti.UI.createTextField({
color: '#336699',
top: 10,
left: 10,
width: 250,
height: 60,
passwordMask:'true',
});
win.add(pm);
win.open();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment