Skip to content

Instantly share code, notes, and snippets.

@mchristopher
Created October 28, 2014 19:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mchristopher/b166ead4a185cbbce5e5 to your computer and use it in GitHub Desktop.
Save mchristopher/b166ead4a185cbbce5e5 to your computer and use it in GitHub Desktop.
X.IO Sample Custom Integration
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<script src="https://code.jquery.com/jquery-1.11.0.min.js" type="text/javascript"></script>
<script src="https://client.x.io/v1/appstream.js" type="text/javascript"></script>
<input type="button" value="Launch Application" id="launch">
<script type="text/javascript">
$('#launch').click(function(e){
AppStreamJS.launchApplication({
application: "APPIDHERE",
style: false
});
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment