Skip to content

Instantly share code, notes, and snippets.

@Rockncoder
Created January 5, 2013 17:26
Show Gist options
  • Select an option

  • Save Rockncoder/4462614 to your computer and use it in GitHub Desktop.

Select an option

Save Rockncoder/4462614 to your computer and use it in GitHub Desktop.
The ApplicationWindow.js after moving the KeyPad out. (also note the changing of the comment style)
/* Application Window Component Constructor */
function ApplicationWindow() {
/* create component instance */
var self = Ti.UI.createWindow({
backgroundColor:'#000000'
});
return self;
}
/* make constructor function the public component interface */
module.exports = ApplicationWindow;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment