Skip to content

Instantly share code, notes, and snippets.

View hfitzwater's full-sized avatar
🗓️

Hunter Fitzwater hfitzwater

🗓️
View GitHub Profile
@hfitzwater
hfitzwater / app.html
Last active February 10, 2017 20:54 — forked from jdanyow/app.html
Fancy Select
<template>
<require from="./fancy-select"></require>
<fancy-select
display-key="name"
left-items.bind="state.potentialItems"
right-items.bind="state.selectedItems">
</fancy-select>
</template>
@hfitzwater
hfitzwater / app.html
Last active February 7, 2017 19:30 — forked from JoshMcCullough/app.html
Slotz
<template>
<require from="./component.html"></require>
<component>
<div slot="slot1">SLOT 1 OVERRIDE</div>
</component>
</template>
@hfitzwater
hfitzwater / app.html
Last active December 17, 2018 20:06 — forked from jdanyow/app.html
Aurelia Validation Demo
<!--
__ __ _ _ _ _ _ _____ _
\ \ / / | (_) | | | | (_) / ____| |
\ \ / /_ _| |_ __| | __ _| |_ _ ___ _ __ | | | |__ __ _ _ __ __ _ ___ ___
\ \/ / _` | | |/ _` |/ _` | __| |/ _ \| '_ \ | | | '_ \ / _` | '_ \ / _` |/ _ \/ __|
\ / (_| | | | (_| | (_| | |_| | (_) | | | | | |____| | | | (_| | | | | (_| | __/\__ \
\/ \__,_|_|_|\__,_|\__,_|\__|_|\___/|_| |_| \_____|_| |_|\__,_|_| |_|\__, |\___||___/
__/ |
|___/
@hfitzwater
hfitzwater / app.html
Last active January 31, 2017 15:46 — forked from jdanyow/app.html
Nested drag and drop
<template>
<require from="tree-renderer"></require>
<h1>
Nested drag and drop
</h1>
<tree-renderer
node.bind="tree"
node-view-path="data-item-view.html"