Skip to content

Instantly share code, notes, and snippets.

@sorvell
Created November 27, 2013 20:08
Show Gist options
  • Save sorvell/7682389 to your computer and use it in GitHub Desktop.
Save sorvell/7682389 to your computer and use it in GitHub Desktop.
inline polymer-element
<!doctype html>
<html>
<head>
<title>Untitled</title>
<script src="components/platform/platform.js"></script>
<link rel="import" href="components/polymer/polymer.html">
</head>
<body>
<x-hi></x-hi>
<polymer-element name="x-hi">
<template>
Hi!
</template>
<script>
Polymer('x-hi', {
happy: true
});
</script>
</polymer-element>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment