Created
March 26, 2011 15:50
-
-
Save codeboxed/888392 to your computer and use it in GitHub Desktop.
Revisions
-
codeboxed created this gist
Mar 26, 2011 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ <html> <head></head> <body style="background-color:#1c1c1c;margin:0"> <div style="border-top:1px solid #404040"> <div style="color:#fff;;padding:10px">Welcome to Titanium</div> </div> <script type="text/javascript"> var eventName = 'randomEvent'; Titanium.API.addEventListener(eventName, function() { alert(eventName+' fired!'); }); Titanium.API.fireEvent(eventName); Titanium.API.removeEventListener(eventName); </script> </body> </html>