25 lines
479 B
HTML
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>
|