Created
March 29, 2016 17:19
-
-
Save msrivastav13/e26cefbc84c2e7f4cadb4a229d376e79 to your computer and use it in GitHub Desktop.
Home page for our app with lightning Out
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 lang="en"> | |
<head> | |
<% include ../partials/ldOut %> | |
</head> | |
<body class="slds"> | |
<header> | |
</header> | |
<main> | |
<div > | |
<p>Sales Leaderboard On Heroku</p> | |
<div id="leaderboard"></div> | |
</div> | |
</main> | |
<footer> | |
</footer> | |
<script> | |
var url = "<%= ouathLightningURL %>"; | |
var token = "Bearer "+"<%= oauthtoken %>"; | |
console.log(token); | |
$Lightning.use("SEDreamin:SalesLeaderBoardVfApp", function() { | |
$Lightning.createComponent("SEDreamin:SalesLeaderMain", {}, | |
"leaderboard", | |
function(cmp) { | |
// do some stuff | |
}); | |
},url,token ); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment