Created
September 30, 2011 02:22
-
-
Save wwwins/1252496 to your computer and use it in GitHub Desktop.
This file contains 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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html> | |
<head> | |
<title>GooglePlusDemo</title> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<meta name="language" content="en" /> | |
<meta name="description" content="" /> | |
<meta name="keywords" content="" /> | |
<script src="http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js" type="text/javascript"></script> | |
<script type="text/javascript"> | |
function getHashUrlVars(){ | |
var vars = [], hash; | |
var hashes = window.location.href.slice(window.location.href.indexOf('#') + 1).split('&'); | |
for(var i = 0; i < hashes.length; i++) | |
{ | |
hash = hashes[i].split('='); | |
vars.push(hash[0]); | |
vars[hash[0]] = hash[1]; | |
} | |
return vars; | |
} | |
</script> | |
<script type="text/javascript"> | |
var flashvars = { | |
token:getHashUrlVars()["access_token"] | |
}; | |
var params = { | |
quality: "high", | |
scale: "noscale", | |
wmode: "window", | |
allowscriptaccess: "always", | |
bgcolor: "#FFFFFF" | |
}; | |
var attributes = { | |
id: "flashContent", | |
name: "flashContent" | |
}; | |
swfobject.embedSWF("GooglePlusDemo.swf", "flashcontent", "800", "600", "10.0.0", "expressInstall.swf", flashvars, params, attributes); | |
</script> | |
</head> | |
<body> | |
<div id="flashcontent"> | |
<h1>GooglePlusDemo</h1> | |
<p>Alternative content</p> | |
<p><a href="http://www.adobe.com/go/getflashplayer"><img | |
src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" | |
alt="Get Adobe Flash player" /></a></p> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment