Add a guide to contributing
[dygraphs.git] / CONTRIBUTING.md
CommitLineData
2374e3cf
DV
1Filing a bug report? Please include the following:
21. Link to a page which demonstrates the problem, preferably a jsfiddle (use [this jsfiddle](http://dygraphs.com/fiddle) as a template)
32. Browser and Operating System that exhibit the problem
4
5It also helps if you include the non-compacted version of the JS on your
6page. For instance, instead of doing this:
7
8```html
9<script type="text/javascript" src="dygraph-combined.js"></script>
10```
11
12do this:
13
14```html
15<script type="text/javascript" src="dygraph-dev.js"></script>
16```
17
18This makes error messages and debugging simpler. The jsfiddle does this automatically.
19
20Sending a Pull Request? See our [guide to making dygraphs contributions](http://dygraphs.com/changes.html).