Bertrand CHEVRIER

Results 38 comments of Bertrand CHEVRIER

Thanks for your reply. I've the issue with version `0.60.0`. I'll try with the last version and close the issue if it doesn't occur anymore.

Of course I like it ! Are you using this library ?

Glad you like it! The simplest would be to add the `request` object as last parameter of all those `trigger` calls [here](https://github.com/krampstudio/aja.js/blob/master/src/aja.js#L523) That's not the most elegant way but it...

Do you mean having something similar to the script loading but for the link tag ? ``` js aja() .url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" ') .type('link') .on('success', function(){ console.log('there is new styles'); }) .on('error',...

This is on the list.

The best would be that we could configure aja in order to define the way the selection is made, something like : ``` js aja.querySelectorAll = (selector) => $(selector); ```...

That's really great! Thank you. For the jsdoc, I'll discard your changes and only update the version of grunt-jsdoc (which I'm also the author) to support npm 4+

In progress

Could you try : ``` js aja() .method('post') .type('json') .url('some_url') .data(data) .on('200', function(response) { return response }); ``` because `data()` set the value either in body or encoded regarding the...