Created
October 4, 2018 01:32
-
-
Save choudharymanish8585/3140ab63023723f3dee2487645b9338e to your computer and use it in GitHub Desktop.
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
<!-- | |
Managed Package component | |
This component will try to read the DOM from your Org's custom component | |
@author Manish Choudhari | |
--> | |
<aura:component implements="force:appHostable,flexipage:availableForAllPageTypes" access="global" > | |
<aura:attribute name="color" type="String" default="green" /> | |
<div> | |
<p>I am a lightning:card within managed package SFFscts.</p> | |
<p>I will try to read your account balance. Stop me if you can.</p> | |
</div> | |
<br/> | |
<p><lightning:button variant="destructive" label="Check Balance" aura:id="SFFscts-button" | |
onclick="{! c.checkBalance }"/></p> | |
<br/> | |
<div id="SFFscts-output" style="{! 'font-size: large; color:'+v.color}" /> | |
</aura:component> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment