Skip to content

Instantly share code, notes, and snippets.

View roddharris's full-sized avatar

roddharris

  • Susquehanna Software, Inc.
  • Williamsport, PA
View GitHub Profile
@roddharris
roddharris / app.html
Last active December 18, 2020 21:50 — forked from jdanyow/app.html
Aurelia Gist
<template>
<div style="color: green">${origChars}</div>
<div style="color: red">${editChars}</div>
<textarea rows="4" value.bind="editValue" change.delegate="composeChars()"></textarea>
<div style="color: goldenrod" if.bind="origValue != editValue">*</div>
</template>
@roddharris
roddharris / example.html
Created September 4, 2019 17:31
A simple Aurelia Custom Element around SignaturePad
<template>
<require from="../resources/elements/input-signature"></require>
<div style="display:flex;flex-direction:column;flex-grow:1">
<h1>Release Header</h1>
<p>Some descriptive text</p>
<input-signature view-model.ref="sigInput"></input-signature>
<button click.delegate="saveData()"></button>
</div>
</template>