Skip to content

Instantly share code, notes, and snippets.

@nikgraf
Created July 17, 2013 00:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nikgraf/6016371 to your computer and use it in GitHub Desktop.
Save nikgraf/6016371 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="import" href="countdown_clock.html">
</head>
<body>
<h1>Alarm</h1>
<div is="countdown-clock"></div>
<script type="application/dart" src="alarm.dart"></script>
<script src="packages/browser/dart.js"></script>
</body>
</html>
import 'package:polymer/polymer.dart';
class CountdownClock extends CustomElement {}
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<element name="countdown-clock" extends="div">
<template>
Countdown
</template>
<script type="application/dart" src="countdown_clock.dart">
</script>
</element>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment