Created
October 28, 2011 09:13
-
-
Save amrishodiq/1321929 to your computer and use it in GitHub Desktop.
Sencha Touch 2 Tutorial Part 1
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
| Ext.application({ | |
| name: 'App', | |
| launch: function() | |
| { | |
| alert("Yaa. Akhirnya jalan juga."); | |
| } | |
| }); |
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
| <!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