Skip to content

Instantly share code, notes, and snippets.

@frankiefu
Created February 13, 2015 23:44
Show Gist options
  • Save frankiefu/b6d6365ebf0339c0cdb8 to your computer and use it in GitHub Desktop.
Save frankiefu/b6d6365ebf0339c0cdb8 to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<head>
<title></title>
<meta charset="utf-8">
<link rel="import" href="../../neoprene/components/polymer/polymer.html">
</head>
<body>
<template is="x-repeat" id="itemsTemplate">
<div></div>
</template>
<script>
var t = document.querySelector('#itemsTemplate');
t.items = [0, 1, 2];
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment