Created
January 5, 2013 17:26
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 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