## 2.0.3 (16 August 2012)
- Updated to latest jquery-ujs
- created `rails:attachBindings` to allow for customization of $.rails object settings
- created `ajax:send` event to provide access to jqXHR object from ajax requests
- added support for `data-with-credentials`
...// Make sure that every Ajax request sends the CSRF tokenCSRFProtection:function(xhr){vartoken=$('meta[name="csrf-token"]').attr('content');if (token)xhr.setRequestHeader('X-CSRF-Token',token);},...