Skip to content

Instantly share code, notes, and snippets.

@choudharymanish8585
Created October 4, 2018 01:32
Show Gist options
  • Save choudharymanish8585/3140ab63023723f3dee2487645b9338e to your computer and use it in GitHub Desktop.
Save choudharymanish8585/3140ab63023723f3dee2487645b9338e to your computer and use it in GitHub Desktop.
<!--
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