Add a guide to contributing
authorDan Vanderkam <danvdk@gmail.com>
Tue, 21 Oct 2014 05:19:12 +0000 (01:19 -0400)
committerDan Vanderkam <danvdk@gmail.com>
Tue, 21 Oct 2014 05:19:12 +0000 (01:19 -0400)
CONTRIBUTING.md [new file with mode: 0644]

diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644 (file)
index 0000000..053ba87
--- /dev/null
@@ -0,0 +1,20 @@
+Filing a bug report? Please include the following:
+1. Link to a page which demonstrates the problem, preferably a jsfiddle (use [this jsfiddle](http://dygraphs.com/fiddle) as a template)
+2. Browser and Operating System that exhibit the problem
+
+It also helps if you include the non-compacted version of the JS on your
+page. For instance, instead of doing this:
+
+```html
+<script type="text/javascript" src="dygraph-combined.js"></script>
+```
+
+do this:
+
+```html
+<script type="text/javascript" src="dygraph-dev.js"></script>
+```
+
+This makes error messages and debugging simpler. The jsfiddle does this automatically.
+
+Sending a Pull Request? See our [guide to making dygraphs contributions](http://dygraphs.com/changes.html).