| OLD | NEW |
| 1 | 1 |
| 2 <!-- | 2 <!-- |
| 3 This file is autogenerated based on | 3 This file is autogenerated based on |
| 4 https://github.com/PolymerElements/ContributionGuide/blob/master/CONTRIBUTING.md | 4 https://github.com/PolymerElements/ContributionGuide/blob/master/CONTRIBUTING.md |
| 5 | 5 |
| 6 If you edit that file, it will get updated everywhere else. | 6 If you edit that file, it will get updated everywhere else. |
| 7 If you edit this file, your changes will get overridden :) | 7 If you edit this file, your changes will get overridden :) |
| 8 |
| 9 You can however override the jsbin link with one that's customized to this |
| 10 specific element: |
| 11 |
| 12 jsbin=https://jsbin.com/cagaye/edit?html,output |
| 8 --> | 13 --> |
| 9 # Polymer Elements | 14 # Polymer Elements |
| 10 ## Guide for Contributors | 15 ## Guide for Contributors |
| 11 | 16 |
| 12 Polymer Elements are built in the open, and the Polymer authors eagerly encourag
e any and all forms of community contribution. When contributing, please follow
these guidelines: | 17 Polymer Elements are built in the open, and the Polymer authors eagerly encourag
e any and all forms of community contribution. When contributing, please follow
these guidelines: |
| 13 | 18 |
| 14 ### Filing Issues | 19 ### Filing Issues |
| 15 | 20 |
| 16 **If you are filing an issue to request a feature**, please provide a clear desc
ription of the feature. It can be helpful to describe answers to the following q
uestions: | 21 **If you are filing an issue to request a feature**, please provide a clear desc
ription of the feature. It can be helpful to describe answers to the following q
uestions: |
| 17 | 22 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 34 | 39 |
| 35 The page turns pink. | 40 The page turns pink. |
| 36 | 41 |
| 37 ## Steps to reproduce | 42 ## Steps to reproduce |
| 38 | 43 |
| 39 1. Put a `paper-foo` element in the page. | 44 1. Put a `paper-foo` element in the page. |
| 40 2. Open the page in a web browser. | 45 2. Open the page in a web browser. |
| 41 3. Click the `paper-foo` element. | 46 3. Click the `paper-foo` element. |
| 42 ``` | 47 ``` |
| 43 | 48 |
| 44 2. **A reduced test case that demonstrates the problem.** If possible, please i
nclude the test case as a JSBin. Start with this template to easily import and u
se relevant Polymer Elements: [http://jsbin.com/cagaye](http://jsbin.com/cagaye/
edit?html,output). | 49 2. **A reduced test case that demonstrates the problem.** If possible, please i
nclude the test case as a JSBin. Start with this template to easily import and u
se relevant Polymer Elements: [https://jsbin.com/cagaye/edit?html,output](https:
//jsbin.com/cagaye/edit?html,output). |
| 45 | 50 |
| 46 3. **A list of browsers where the problem occurs.** This can be skipped if the
problem is the same across all browsers. | 51 3. **A list of browsers where the problem occurs.** This can be skipped if the
problem is the same across all browsers. |
| 47 | 52 |
| 48 ### Submitting Pull Requests | 53 ### Submitting Pull Requests |
| 49 | 54 |
| 50 **Before creating a pull request**, please ensure that an issue exists for the c
orresponding change in the pull request that you intend to make. **If an issue d
oes not exist, please create one per the guidelines above**. The goal is to disc
uss the design and necessity of the proposed change with Polymer authors and com
munity before diving into a pull request. | 55 **Before creating a pull request**, please ensure that an issue exists for the c
orresponding change in the pull request that you intend to make. **If an issue d
oes not exist, please create one per the guidelines above**. The goal is to disc
uss the design and necessity of the proposed change with Polymer authors and com
munity before diving into a pull request. |
| 51 | 56 |
| 52 When submitting pull requests, please provide: | 57 When submitting pull requests, please provide: |
| 53 | 58 |
| 54 1. **A reference to the corresponding issue** or issues that will be closed by
the pull request. Please refer to these issues using the following syntax: | 59 1. **A reference to the corresponding issue** or issues that will be closed by
the pull request. Please refer to these issues in the pull request description u
sing the following syntax: |
| 55 | 60 |
| 56 ```markdown | 61 ```markdown |
| 57 (For a single issue) | 62 (For a single issue) |
| 58 Fixes #20 | 63 Fixes #20 |
| 59 | 64 |
| 60 (For multiple issues) | 65 (For multiple issues) |
| 61 Fixes #32, #40 | 66 Fixes #32, fixes #40 |
| 62 ``` | 67 ``` |
| 63 | 68 |
| 64 2. **A succinct description of the design** used to fix any related issues. For
example: | 69 2. **A succinct description of the design** used to fix any related issues. For
example: |
| 65 | 70 |
| 66 ```markdown | 71 ```markdown |
| 67 This fixes #20 by removing styles that leaked which would cause the page to tur
n pink whenever `paper-foo` is clicked. | 72 This fixes #20 by removing styles that leaked which would cause the page to tur
n pink whenever `paper-foo` is clicked. |
| 68 ``` | 73 ``` |
| 69 | 74 |
| 70 3. **At least one test for each bug fixed or feature added** as part of the pul
l request. Pull requests that fix bugs or add features without accompanying test
s will not be considered. | 75 3. **At least one test for each bug fixed or feature added** as part of the pul
l request. Pull requests that fix bugs or add features without accompanying test
s will not be considered. |
| 71 | 76 |
| 72 If a proposed change contains multiple commits, please [squash commits](https://
www.google.com/url?q=http://blog.steveklabnik.com/posts/2012-11-08-how-to-squash
-commits-in-a-github-pull-request) to as few as is necessary to succinctly expre
ss the change. A Polymer author can help you squash commits, so don’t be afraid
to ask us if you need help with that! | 77 If a proposed change contains multiple commits, please [squash commits](https://
www.google.com/url?q=http://blog.steveklabnik.com/posts/2012-11-08-how-to-squash
-commits-in-a-github-pull-request) to as few as is necessary to succinctly expre
ss the change. A Polymer author can help you squash commits, so don’t be afraid
to ask us if you need help with that! |
| OLD | NEW |