Skip to content

Instantly share code, notes, and snippets.

View mattgaspar's full-sized avatar

Matt Gaspar mattgaspar

View GitHub Profile
@mattgaspar
mattgaspar / app.html
Created August 29, 2017 01:58 — forked from Thanood/app.html
Aurelia-Materialize bridge input fields focus working
<template>
<div>
<md-input md-label="put some text here" md-value.bind="textValue" md-disabled.bind="disabledValue"></md-input><br />
You entered: ${textValue}<br />
<button md-button="flat: true;" md-waves class="accent-text" click.delegate="setText()">set text to something</button>
<button md-button="flat: true;" md-waves class="accent-text" click.delegate="setDisabled()">Toggle Input Disabling</button>
<md-input view-model.ref="inputElement" md-label="readonly - bound to the field above" md-value.bind="textValue" md-readonly.bind="true"></md-input><br />
</div>
<div>
@mattgaspar
mattgaspar / app.html
Created August 19, 2017 02:38 — forked from jdanyow/app.html
Aurelia Radio Select
<template>
<require from="./radio-select"></require>
<style>
form > label {
display: block;
margin-top: 10px;
}
</style>
@mattgaspar
mattgaspar / app.html
Created December 1, 2016 18:42 — forked from jdanyow/app.html
Aurelia Gist
<template>
<h1>${message}</h1>
</template>