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