Skip to content

Instantly share code, notes, and snippets.

@amrishodiq
Created October 28, 2011 09:13
Show Gist options
  • Select an option

  • Save amrishodiq/1321929 to your computer and use it in GitHub Desktop.

Select an option

Save amrishodiq/1321929 to your computer and use it in GitHub Desktop.
Sencha Touch 2 Tutorial Part 1
Ext.application({
name: 'App',
launch: function()
{
alert("Yaa. Akhirnya jalan juga.");
}
});
<!DOCTYPE html>
<html>
<head>
<title>Getting Started</title>
<link rel="stylesheet" href="touch/resources/css/sencha-touch.css" type="text/css">
<script type="text/javascript" src="touch/sencha-touch-all.js"></script>
<script type="text/javascript" src="app.js"></script>
</head>
<body></body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment