Skip to content

Instantly share code, notes, and snippets.

View ccamarat's full-sized avatar
:bowtie:
Bowties are cool

Chris Camaratta ccamarat

:bowtie:
Bowties are cool
View GitHub Profile
@ccamarat
ccamarat / .hyper.js
Last active January 27, 2018 21:18
Hyper Settings
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// Choose either "stable" for receiving highly polished,
// or "canary" for less polished but more frequent updates
updateChannel: 'canary',
@ccamarat
ccamarat / app.html
Last active August 8, 2016 21:25
Aurelia "repeat.for" in child components
<template>
<require from="./table-head-normal.html"></require>
<require from="./table-head-aurelia.html"></require>
This is the "normal" way of looping. Note that it doesn't work in Aurelia:
<table>
<thead as-element="table-head-normal" headings.bind="headings"></thead>
</table>
<hr />