Created
February 10, 2018 18:07
-
-
Save Frelseren/1018fee0df4b06be16121c96fae72c58 to your computer and use it in GitHub Desktop.
AngularPOC Visualforce page with RemoteAction
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
<apex:page standardStylesheets="false" sidebar="false" showHeader="false" | |
applyBodyTag="false" applyHtmlTag="false" docType="html-5.0" | |
controller="AngularPOC"> | |
<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 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