Skip to content

Commit

Permalink
Merge pull request #1 from mficzel/task/namespaceChange
Browse files Browse the repository at this point in the history
DOCS: Remove PackageFactory Namspace
  • Loading branch information
mficzel authored Nov 13, 2017
2 parents c6a1e2c + 4123b47 commit a3f2e1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ prototype(Vendor.Site:Example) < prototype(Neos.Fusion:Component) {
<div>
<h1 @key="headline" class="headline">{props.title}</h1>
<h2 @key="subheadline" class="subheadline" @if.hasSubtitle={props.subtitle ? true : false}>{props.subtitle}</h2>
<PackageFactory.AtomicFusion.AFX:Image @key="image" uri={props.imageUri} />
<Vendor.Site:Image @key="image" uri={props.imageUri} />
</div>
`
}
Expand Down Expand Up @@ -61,7 +61,7 @@ prototype(Vendor.Site:Example) < prototype(Neos.Fusion:Component) {
attributes.subheadline = 'subheadline'
@if.hasSubtitle = ${props.subtitle ? true : false}
}
image = PackageFactory.AtomicFusion.AFX:Image {
image = Vendor.Site:Image {
uri = ${props.imageUri}
}
}
Expand Down

0 comments on commit a3f2e1e

Please sign in to comment.