Skip to content

Instantly share code, notes, and snippets.

@avrahamcool
Forked from jdanyow/app.html
Last active October 16, 2017 18:44
Show Gist options
  • Save avrahamcool/86fc278d3837718be4691acd5625aaad to your computer and use it in GitHub Desktop.
Save avrahamcool/86fc278d3837718be4691acd5625aaad to your computer and use it in GitHub Desktop.
Aurelia Gist
<template>
<style>
.dummy
{
display: none;
}
</style>
input type number (max = 99): <input type="number" max="99" value.bind="val" />
<input class="dummy" type="range" max="99" value.bind="val" />
</template>
export class App {
message = 'Hello World!';
}
<!doctype html>
<html>
<head>
<title>Aurelia</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body aurelia-app>
<h1>Loading...</h1>
<script src="https://jdanyow.github.io/rjs-bundle/node_modules/requirejs/require.js"></script>
<script src="https://jdanyow.github.io/rjs-bundle/config.js"></script>
<script src="https://jdanyow.github.io/rjs-bundle/bundles/aurelia.js"></script>
<script src="https://jdanyow.github.io/rjs-bundle/bundles/babel.js"></script>
<script>
require(['aurelia-bootstrapper']);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment