Skip to content

Instantly share code, notes, and snippets.

@kevinbubu
Created May 17, 2013 15:02
Show Gist options
  • Save kevinbubu/5599643 to your computer and use it in GitHub Desktop.
Save kevinbubu/5599643 to your computer and use it in GitHub Desktop.
var win = Ti.UI.createWindow({
backgroundColor:'#fff'
});
var button = Ti.UI.createButton({
title:'button',
width:100,
height:44,
top:100
});
win.add(button);
button.addEventListener('click', function(){
alert('Hello JSDC!');
});
win.open();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment