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