You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using iron-pages to distribute view content into multiple areas of a page, using a shared string index, but in some areas I want to use the same content for multiple views (rather than duplicate it). Basically, I want to do something like this in a custom element:
Where content is distributed into two iron-pages elements based on the area1 and area2 selectors. For each of the two areas I have to provide a home, settings and add content, but I'd like to, for example, use the same area2 content for both the home and add view. i.e. iron-pages will display the same content for both indexes.
<!-- BEGIN Area 1 Content -->
<div class="area1" view="home">
Something
</div>
<div class="area1" view="settings">
Something
</div>
<div class="area1" view="add">
Something
</div>
<!-- Area 1 Content -->
<!-- BEGIN Area 2 Content -->
<div class="area2" view="home,add"> <-- << I WANT TO BE ABLE TO DO THIS -->
Something
</div>
<div class="area2" view="settings">
Something
</div>
<!-- Area 2 Content -->
The text was updated successfully, but these errors were encountered:
This is a proposed feature request.
I'm using
iron-pages
to distribute view content into multiple areas of a page, using a shared string index, but in some areas I want to use the same content for multiple views (rather than duplicate it). Basically, I want to do something like this in a custom element:Where content is distributed into two
iron-pages
elements based on thearea1
andarea2
selectors. For each of the two areas I have to provide ahome
,settings
andadd
content, but I'd like to, for example, use the samearea2
content for both thehome
andadd
view. i.e.iron-pages
will display the same content for both indexes.The text was updated successfully, but these errors were encountered: