Skip to content

Instantly share code, notes, and snippets.

@Eagle94T
Eagle94T / index.html
Last active July 29, 2020 06:54
Aurelia Two-Way Binding
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Dumber Gist</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
<base href="/">
</head>
<!--
Dumber gist uses dumber bundler, the default bundle file
@Eagle94T
Eagle94T / index.html
Created May 20, 2020 15:20
aurelia disabled.bind not working
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Dumber Gist</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
<base href="/">
</head>
<!--
Dumber gist uses dumber bundler, the default bundle file
@Eagle94T
Eagle94T / index.html
Last active May 12, 2020 13:21
reload-bug with aurelias @child function
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Dumber Gist</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
<base href="/">
</head>
<!--
Dumber gist uses dumber bundler, the default bundle file
@Eagle94T
Eagle94T / app.html
Created May 12, 2020 12:51 — forked from reneolivo/app.html
Aurelia Templating Child/Children Bug
<template>
<h1>Bug Example</h1>
<router-view></router-view>
</template>
@Eagle94T
Eagle94T / app.html
Created July 14, 2019 19:25 — forked from JeroenVinke/app.html
Responsive panel with Multiselect:
<template>
<require from="./basic-use.css!css"></require>
<require from="aurelia-kendoui-bridge/multiselect/multiselect"></require>
<require from="aurelia-kendoui-bridge/button/button"></require>
<require from="aurelia-kendoui-bridge/responsivepanel/responsivepanel"></require>
<div id="example">
<div class="demo-section wide k-content">
<h2>Invite Attendees</h2>
@Eagle94T
Eagle94T / app.html
Created June 25, 2018 11:52 — forked from len-ro/app.html
Dynamic with compose
<template>
<ul ak-menu k-on-select.delegate="onSelect($event.detail)">
<li>
Modules
<ul>
<li><span class="d-menuitem" data-id="m1">First module</span></li>
<li><span class="d-menuitem" data-id="m2">Second module</span></li>
</ul>
</li>
</ul>
@Eagle94T
Eagle94T / app.html
Created December 19, 2017 07:46 — forked from jdanyow/app.html
Aurelia Validation Demo
<template>
<require from="./registration-form"></require>
<registration-form></registration-form>
</template>
@Eagle94T
Eagle94T / app.html
Created July 3, 2017 08:28
Aurelia Submit Validation validates too late
<template>
<require from="./registration-form"></require>
<registration-form></registration-form>
</template>
@Eagle94T
Eagle94T / app.html
Created June 28, 2017 15:27 — forked from Vheissu/app.html
Basic Aurelia Gist Skeleton
<template>
</template>