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

Commit 91a4576

Browse files
committed
Source formatting
1 parent 94d1128 commit 91a4576

File tree

2 files changed

+9
-15
lines changed

2 files changed

+9
-15
lines changed

README.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ Or [download as ZIP](https://github.com/webcomponents/hello-world-polymer/archiv
2020

2121
## Usage
2222

23-
1. Import Web Components' polyfill:
23+
1. Import polyfill:
2424

2525
```html
2626
<script src="bower_components/webcomponentsjs/webcomponents.min.js"></script>
2727
```
2828

29-
2. Import Custom Element:
29+
2. Import custom element:
3030

3131
```html
3232
<link rel="import" href="bower_components/hello-world-polymer/dist/hello-world.html">
@@ -78,14 +78,6 @@ In order to run it locally you'll need to fetch some dependencies and a basic se
7878
$ grunt deploy
7979
```
8080

81-
## Contributing
82-
83-
1. Fork it!
84-
2. Create your feature branch: `git checkout -b my-new-feature`
85-
3. Commit your changes: `git commit -m 'Add some feature'`
86-
4. Push to the branch: `git push origin my-new-feature`
87-
5. Submit a pull request :D
88-
8981
## History
9082

9183
For detailed changelog, check [Releases](https://github.com/webcomponents/hello-world-polymer/releases).

index.html

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html>
33
<head>
4-
<meta charset="UTF-8">
4+
5+
<meta charset="utf-8">
56
<title>&lt;hello-world&gt;</title>
67

7-
<!-- Importing Web Component's Polyfill -->
88
<script src="bower_components/webcomponentsjs/webcomponents.min.js"></script>
9+
<!-- Imports polyfill -->
10+
11+
<!-- Imports custom element -->
912

10-
<!-- Importing Custom Elements -->
1113
<link rel="import" href="src/hello-world.html">
1214
</head>
1315
<body>
1416

15-
<!-- Using Custom Elements -->
17+
<!-- Runs custom element -->
1618
<hello-world who="Unicorn"></hello-world>
1719

1820
</body>

0 commit comments

Comments
 (0)