Skip to content

Instantly share code, notes, and snippets.

View kabaehr's full-sized avatar

Katharina Bähr kabaehr

View GitHub Profile
@kabaehr
kabaehr / app.html
Last active January 30, 2018 20:10
Event binding
<template>
<h1>Keyboard Events binding example</h1>
<div>
<span> Keypress event without return true;</span>
<input type="text" keypress.delegate="keypress($event)" />
</div>
<div>
<span> Keypress event with return true; </span>
@kabaehr
kabaehr / detail.html
Last active November 8, 2017 09:20
Master detail
<template>
Detail
</template>
@kabaehr
kabaehr / app.css
Last active July 18, 2018 00:13
Aurelia Gist .ref binding command examples
body {
font-family: "Open Sans", Helvetica, Arial, sans-serif;
margin-bottom: 30px;
}
.list {
display: block;
margin: 20px 0px;
overflow: hidden;
}
@kabaehr
kabaehr / app.css
Last active July 8, 2019 18:31
Aurelia .call examples
ul {
height: 100px;
background-color: aliceblue;
overflow-y: scroll;
}
@kabaehr
kabaehr / app.css
Last active March 19, 2017 21:14 — forked from jdanyow/app.html
Aurelia Gist custom attribute and custom element examples
body {
font-family: "Open Sans", Helvetica, Arial, sans-serif;
margin-bottom: 30px;
}
list-item {
float: left;
}
.list, .scroll-list {