Skip to content

Instantly share code, notes, and snippets.

@scottsampson
Created April 5, 2011 17:14
Show Gist options
  • Save scottsampson/ecdacf378723f990a9fe to your computer and use it in GitHub Desktop.
Save scottsampson/ecdacf378723f990a9fe to your computer and use it in GitHub Desktop.
appcelerator window b
var win = Titanium.UI.currentWindow;
var closeBtn = Titanium.UI.createButton({title:'Schedule'});
win.setLeftNavButton(closeBtn);
closeBtn.addEventListener('click', function() {
win.close();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment