Skip to content

Instantly share code, notes, and snippets.

@tyoshikawa1106
Created February 29, 2016 02:38
Show Gist options
  • Select an option

  • Save tyoshikawa1106/e991ec8805525608eb15 to your computer and use it in GitHub Desktop.

Select an option

Save tyoshikawa1106/e991ec8805525608eb15 to your computer and use it in GitHub Desktop.
<aura:component implements="flexipage:availableForAllPageTypes,force:appHostable">
<forceChatter:fullFeed />
</aura:component>
<apex:page showHeader="false" sidebar="false" standardStylesheets="false">
<apex:includeLightning />
<div id="vf-page">
<div>
<div id="lighnting_out_demo" />
</div>
</div>
<script type="text/javascript">
$Lightning.use("c:LightningOutSampleApp", function() {
$Lightning.createComponent("c:LightningForceChatterFullFeed",
{},
"lighnting_out_demo",
function(cmp) {
// do some stuff
});
});
</script>
</apex:page>
<aura:application access="GLOBAL" extends="ltng:outApp">
<aura:dependency resource="c:LightningForceChatterFullFeed" />
</aura:application>
@sarbjeetheera
Copy link
Copy Markdown

hey tyoshikawa

iam getting this error when click on file attach symbol

This page has an error. You might just need to refresh it. Action failed: aura:if$controller$handleTheTruth [This application contains a reference to the force:record component, which is not supported by this application.] Failing descriptor: {aura:if$controller$handleTheTruth}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment