Skip to content

Instantly share code, notes, and snippets.

@Frelseren
Created February 10, 2018 18:14
Show Gist options
  • Save Frelseren/e2e0f05e3fd85f92abf162ae3fd4cd87 to your computer and use it in GitHub Desktop.
Save Frelseren/e2e0f05e3fd85f92abf162ae3fd4cd87 to your computer and use it in GitHub Desktop.
AngularPOC Visualforce page REST
<apex:page standardStylesheets="false" sidebar="false" showHeader="false"
applyBodyTag="false" applyHtmlTag="false" docType="html-5.0">
<html>
<head>
<meta charset="utf-8" />
<title>Meetup</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/x-icon" href="{!$Resource.AngularPOC + '/favicon.ico'}" />
<link rel="stylesheet" type="text/css" href="{!$Resource.AngularPOC + '/assets/main.css'}" />
</head>
<body>
<app-root>Loading...</app-root>
<script>
var sessionId = '{!$Api.Session_ID}';
</script>
<script src="{!$Resource.AngularPOC + '/inline.bundle.js'}"></script>
<script src="{!$Resource.AngularPOC + '/polyfills.bundle.js'}"></script>
<script src="{!$Resource.AngularPOC + '/vendor.bundle.js'}"></script>
<script src="{!$Resource.AngularPOC + '/main.bundle.js'}"></script>
</body>
</html>
</apex:page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment