Skip to content

Instantly share code, notes, and snippets.

@spmacdonald
Created June 10, 2013 23:11
Show Gist options
  • Save spmacdonald/5753266 to your computer and use it in GitHub Desktop.
Save spmacdonald/5753266 to your computer and use it in GitHub Desktop.
dart web component
<!DOCTYPE html>
<html>
<body>
<element name="x-foo" constructor="Foo" extends="div">
<template>
<svg viewBox="{{viewbox}}">
<g class="nodes">
<g template iterate="n in imapNodes">
<circle cx="{{n.x}}" cy="{{n.y}}" r="{{n.r}}"></circle>
</g>
</g>
</svg>
</template>
<script type="application/dart" src="foo.dart"></script>
</element>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment