This repository was archived by the owner on Sep 25, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +9
-15
lines changed
Expand file tree Collapse file tree 2 files changed +9
-15
lines changed Original file line number Diff line number Diff 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
9183For detailed changelog, check [Releases](https://github.com/webcomponents/hello-world-polymer/releases).
Original file line number Diff line number Diff line change 1- <!DOCTYPE html>
1+ <!doctype html>
22< html >
33< head >
4- < meta charset ="UTF-8 ">
4+
5+ < meta charset ="utf-8 ">
56 < title > <hello-world></ 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 >
You can’t perform that action at this time.
0 commit comments