Skip to content

Instantly share code, notes, and snippets.

View mreiche's full-sized avatar

Mike Reiche mreiche

View GitHub Profile
@mreiche
mreiche / index.html
Created January 11, 2021 13:46 — forked from MaximBalaganskiy/index.html
aurelia-mdc-web
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Dumber Gist</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<base href="/">
</head>
@mreiche
mreiche / index.html
Last active December 11, 2020 12:07
mdc-lookup
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Dumber Gist</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<base href="/">
</head>
@mreiche
mreiche / index.html
Last active November 12, 2020 08:35
mdc-list
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Dumber Gist</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<base href="/">
</head>
@mreiche
mreiche / index.html
Last active November 10, 2020 00:02 — forked from MaximBalaganskiy/index.html
mdc-select
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Dumber Gist</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<base href="/">
</head>
@mreiche
mreiche / _colors.md
Created March 7, 2017 20:44 — forked from Thanood/_colors.md
Aurelia-Materialize bridge input fields aurelia-validation
md-colors

Currently, the styles for validation messages are hosted in another component Please use <md-colors></md-colors> in your main view to use colors.

This will be refactored.

@mreiche
mreiche / app.html
Created December 23, 2016 13:27
Aurelia + i18n + dynamic namespaces
<template>
<ul>
<li>Standard Namespace: <span tr="standard:hello">pl</span></li>
<li>Custom Namespace: <span tr="custom:hello">pl</span></li>
</ul>
<button click.trigger="changeLocale('de')">de</button>
<button click.trigger="changeLocale('en')">en</button>
@mreiche
mreiche / app.html
Created December 23, 2016 13:09 — forked from jdanyow/app.html
Aurelia + i18n plugin issue with binding behaviour
<template>
<require from="tbind.js"></require>
<h1>${message}</h1>
<h2>${prop}</h2>
<div>${'val1' & t}</div>
<div>${'val1' & t}</div>
<div>${'val1' & t}</div>
<hr/>
<div>
<compose containerless view.bind="'custom-view.html'"></compose>
@mreiche
mreiche / app.html
Last active December 23, 2016 13:04 — forked from jdanyow/app.html
Aurelia Gist
<template>
<h1>${message}</h1>
</template>