Skip to content

Instantly share code, notes, and snippets.

@cmichaelgraham
Forked from Vheissu/app.html
Last active October 9, 2016 03:48
Show Gist options
  • Save cmichaelgraham/00a72112d8127e65ec79c82708743003 to your computer and use it in GitHub Desktop.
Save cmichaelgraham/00a72112d8127e65ec79c82708743003 to your computer and use it in GitHub Desktop.
Repeater of elements
<template>
<div repeat.for="node of nodes" innerhtml.bind="node.outerHTML"></div>
</template>
let el1 = document.createElement('p');
let el2 = document.createElement('p');
let el3 = document.createElement('p');
el1.innerHTML = 'test';
el2.contentEditable = 'true';
el3.innerText = 'inner text test';
export class App {
constructor() {
this.nodes = [
el1,
el2,
el3
];
}
}
<!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