Guest User

Untitled

a guest
Jan 24th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. <aura:application access="GLOBAL" extends="ltng:outApp">
  2. <aura:dependency resource="c:StarRating" />
  3. <div aura:id="blankStuff" >
  4. Stuff...
  5. </div>
  6. </aura:application>
  7.  
  8. <aura:component >
  9. <div class="slds-grid slds-m-top--x-small slds-grid--pull-padded">
  10. <!-- Had a lot of other code here that were styled with SLDS -->
  11. <button class="slds-button--brand slds-not-selected" onclick="{!c.hidePopover}">
  12. </button>
  13. </div>
  14. </div>
  15. </div>
  16. <div class="slds-size--1-of-8 slds-text-align--center">
  17. <!-- more markup here... -->
  18. </div>
  19. </div>
  20.  
  21. <apex:page standardController="Account">
  22. <apex:stylesheet value="{!URLFOR($Resource.slds214, 'assets/styles/salesforce-lightning-design-system-vf.css')}" />
  23. <apex:includeLightning />
  24. <script type="text/javascript">
  25.  
  26. $Lightning.use("c:FeedbackApp", function() {
  27. $Lightning.createComponent(
  28. "c:StarRating", null, "starRating"
  29. );
  30. });
  31. //more scripts...
  32. </script>
  33. <div class="myOrg">
  34. <div id="starRating" />
  35. </div>
  36. <!-- more markup down here not related to the lightning component -->
  37.  
  38. <apex:page standardController="Account" standardStylesheets="false" showHeader="false" sidebar="false">
  39.  
  40. <aura:application extends="ltng:outAppUnstyled" access="GLOBAL">
Add Comment
Please, Sign In to add comment