Migrated the Feature page to Polymer 1

This commit is contained in:
Stefan Zermatten
2017-01-20 15:45:18 +02:00
parent 4261776d8c
commit 33ca60c2e6
20 changed files with 613 additions and 234 deletions

View File

@@ -0,0 +1,24 @@
<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>