75d0c7a6d4b19d13ca0a9c02cb1617864bb8359b
[dygraphs.git] / .github / ISSUE_TEMPLATE.md
1 Filing a bug report? Please include the following:
2
3 1. Link to a page which demonstrates the problem, preferably a jsfiddle (use http://dygraphs.com/fiddle as a template)
4 2. Browser and Operating System that exhibit the problem
5 3. Version of dygraphs that you're using
6
7 It also helps if you include the non-compacted version of the JS on your
8 page. For instance, instead of doing this:
9
10 ```html
11 <script type="text/javascript" src="dygraph-combined.js"></script>
12 ```
13
14 do this:
15
16 ```html
17 <script type="text/javascript" src="dygraph-combined.dev.js"></script>
18 ```
19
20 This makes error messages and debugging simpler. The jsfiddle does this automatically.