Skip to content

Instantly share code, notes, and snippets.

View eikaramba's full-sized avatar

Eike Thies eikaramba

View GitHub Profile
@eikaramba
eikaramba / app.html
Last active January 9, 2017 19:42 — forked from Thanood/app.html
Aurelia-Materialize bridge select valueConverter
<template>
<require from="./filterPizzaValueConverter"></require>
<div>
<md-checkbox md-checked.bind="shouldFilter"></md-checkbox>
<select md-select multiple md-select.ref="select" value.two-way="selectedMeal">
<option value="" disabled>Select your meal</option>
<option repeat.for="meal of food | filterPizza:shouldFilter" model.bind="meal" value.bind="meal.id">${meal.name}</option>
</select>
</div>
</template>