Skip to content

Instantly share code, notes, and snippets.

View Ullfis's full-sized avatar

Eyjolfur Vatne Ullfis

  • Vassenden, Norway
View GitHub Profile
@Ullfis
Ullfis / app.html
Last active December 15, 2017 10:17
aurelia-mdc-bridge
<template>
<require from="material-components-web/dist/material-components-web.css"></require>
<mdc-toolbar>
<mdc-toolbar-row>
<mdc-toolbar-section start="true">
<button class="mdc-toolbar__menu-icon" mdc-ripple><i class="material-icons">close</i></button>
<mdc-toolbar-title>Button tags with child icon tag</mdc-toolbar-title>
</mdc-toolbar-section>
@Ullfis
Ullfis / app.html
Last active September 13, 2016 20:51 — forked from Thanood/app.html
Aurelia - Materialize Select auto-width
<template>
<require from="./auto-width"></require>
<div auto-width.bind="inputValue1">
<select md-select value.two-way="inputValue1">
<option value="" disabled selected>select an item</option>
<option value="item 1">item 1</option>
<option value="item longer">item longer</option>
<option value="item even longer">item even longer</option>
</select>
</div>