Skip to content
This repository has been archived by the owner on Sep 25, 2022. It is now read-only.

Commit

Permalink
Release v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeno Rocha committed Apr 26, 2014
1 parent c817fef commit 51a99c8
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hello-world-polymer",
"version": "0.1.0",
"version": "0.1.1",
"description": "Web Component example using Polymer",
"authors": [
"WebComponents.org"
Expand Down
17 changes: 17 additions & 0 deletions dist/hello-world.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!-- Import Polymer -->
<link rel="import" href="../../polymer/polymer.html">

<!-- Define your custom element -->
<polymer-element name="hello-world" attributes="who">

<template>
<p>Hello <strong>{{who}}</strong> :)</p>
</template>

<script>
Polymer('hello-world', {
who: 'World'
});
</script>

</polymer-element>

0 comments on commit 51a99c8

Please sign in to comment.