Skip to content

Instantly share code, notes, and snippets.

@kwhinnery
Created July 7, 2009 14:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kwhinnery/142115 to your computer and use it in GitHub Desktop.
Save kwhinnery/142115 to your computer and use it in GitHub Desktop.
//Handle storing and recalling username/password
function storeLogin() {
Titanium.App.Properties.setString('username',$("#username").val());
Titanium.App.Properties.setString('password',$("#password").val());
}
function recallLogin() {
$("#username").val(Titanium.App.Properties.getString('username'));
$("#password").val(Titanium.App.Properties.getString('password'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment