⌈⌋ ⎇ branch:  Bitrhythm


Artifact Content

Artifact bdc0bff9c0cb7c8c7a4809059f26d4bea5f3201af0ea6950d81977c525be78bd:


<bug-2629>
  <select data-ref="option" ><option each="{ opt in options }" value="{ opt.val }">{ opt.text }</option></select>
  <input data-ref="check" type="checkbox" each="{ opt in options }" value="{ opt.val }">
  <input data-ref="radio" type="radio" name="itm" each="{ opt in options }" value="{ opt.val }">

  <script>
    this.options = [
      { val:'R',  text:'Road'},
      { val:'',   text:'All '}
    ];
  </script>
</bug-2629>