Skip to content

Instantly share code, notes, and snippets.

@bradgignac
Last active December 28, 2015 06:19
Show Gist options
  • Save bradgignac/7455873 to your computer and use it in GitHub Desktop.
Save bradgignac/7455873 to your computer and use it in GitHub Desktop.
Polymer Example
<div class="rs-detail-section">
<div class="rs-detail-section-header">
<div class="rs-detail-section-title">{{title}}</div>
<div class="rs-detail-section-summary">{{summary}}</div>
<div class="rs-detail-section-toggle"></div>
</div>
<div class="rs-detail-section-body">
<!-- This is all user-provided code that will appear in the section body. -->
<div class="rs-btn-group">
<button class="rs-btn rs-btn-primary">Add Widget</button>
<button class="rs-btn rs-btn-secondary">Delete Widget</button>
</div>
<p>Some other stuff here...</p>
</div>
</div>
<rs-section title="{{title}}" summary="{{summary}}">
<!-- This is all user-provided code that will appear in the section body. -->
<div class="rs-btn-group">
<button class="rs-btn rs-btn-primary">Add Widget</button>
<button class="rs-btn rs-btn-secondary">Delete Widget</button>
</div>
<p>Some other stuff here...</p>
</rs-section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment