Commits
Brian Ridings committed eb0332609cd
CSRF token to headers for AJAX POST. Fix for #113
This is how you do a JS post with the CSRF Protection
```
$.ajax({
url: "http://test.com",
type:"post"
headers: {'X-CSRF-Token': $('meta[name="csrf-token"]').attr('content')}})
```