Files
DiceCloud/rpg-docs/public/custom_components/dicecloud-selector/dicecloud-selector.html
2017-01-20 15:45:18 +02:00

25 lines
479 B
HTML

<link rel="import" href="../../components/polymer/polymer.html">
<link rel="import" href="dicecloud-selectable.html">
<script>
// jscs:disable
/**
`dicecloud-selector` implements DicecloudSelectableBehavior
behaves like a simple iron-selector
- No multi-select
- Assumes attrForSelected = "name"
- Behaves a little better with Blaze
*/
Polymer({
is: 'dicecloud-selector',
behaviors: [
Polymer.DicecloudSelectableBehavior
]
});
</script>