Skip to content

Instantly share code, notes, and snippets.

@ojimac
Created July 13, 2012 01:37
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 ojimac/3102201 to your computer and use it in GitHub Desktop.
Save ojimac/3102201 to your computer and use it in GitHub Desktop.
function SampleWindow(_title) {
var self = Ti.UI.createWindow({
title : _title,
backgroundColor : 'white'
});
return self;
}
module.exports = SampleWindow;
@ojimac
Copy link
Author

ojimac commented Jul 13, 2012

Titanium Mobile SDK 2.0から対応したCommon JS形式の書き方テンプレ

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment