Created
March 23, 2009 23:14
-
-
Save jhaynie/83840 to your computer and use it in GitHub Desktop.
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
<script> | |
document.write("<div>platform name = "+Titanium.Platform.name+"</div>"); | |
document.write("<div>platform version = "+Titanium.Platform.version+"</div>"); | |
document.write("<div>platform architecture = "+Titanium.Platform.architecture+"</div>"); | |
document.write("<div>platform ip_address = "+Titanium.Platform.address+"</div>"); | |
document.write("<div>platform mac_address = "+Titanium.Platform.macaddress+"</div>"); | |
document.write("<div>platform id = "+Titanium.Platform.id+"</div>"); | |
document.write("<div>platform processors = "+Titanium.Platform.processorCount+"</div>"); | |
document.write("<div>platform username = "+Titanium.Platform.username+"</div>"); | |
document.write("<div>platform ostype = "+Titanium.Platform.ostype+"</div>"); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment