Skip to content

Instantly share code, notes, and snippets.

View winterlimelight's full-sized avatar

winterlimelight

View GitHub Profile
@winterlimelight
winterlimelight / app.html
Created August 1, 2017 03:22 — forked from plwalters/app.html
DI inheritance
<template>
<require from="./sort"></require>
<require from="./customele"></require>
<table>
<tr
as-element="customele"
repeat.for="entry of entries | sort: { propertyName: 'on', direction: 'descending' }"
entry.bind="entry">
</tr>
</table>