Andrew Wharton

Results 12 comments of Andrew Wharton

+1. This is a nice feature of S3 for hosting static content that would be much appreciated. It would be awesome to be able to migrate content from S3 to...

I had an issue where the Scrollspy component was mounted and initialised before the DOM nodes that it was targeting were mounted, meaning it never saw them as targets (I...

So the key thing to understand is that the Scrollspy has implemented the componentDidMount and componentWillReceiveProps lifecycle methods which call an internal, private method called _initSpyTarget. This private method loops...

I ran into the problem, but I have a feeling that the proper fix for this is to use the recommended [HTML5 document structure and outline](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Using_HTML_sections_and_outlines). The id can then...

Hey! Just a quick question. Are you saying that this is a bug with this wrapper library or with Xero's API or API docs. Where exactly are we singularising the...

Absolutely, I see what you're referring to now. I'd like to hear from @jesucarr (https://github.com/thallium205/xero/commit/b755166fcc131fb59c9ea0dcdfcdca7bdb50415e) what the reason for this was in the first place, as he went to some...

Right, then if the passed request data is an Array, EasyXML will wrap it with a root node using the pluralized version of the name which we have extracted from...

Hi! Could you describe what exactly the issue is that you're having please? An example request showing what data you are sending and the response you receive would be great....

Hi Chiara, Thanks for this. After a bit of investigation, it looks like this is due to the way that EasyXML converts Arrays into XML nodes. There is a configurable...

Having said that, you can do: ``` request = { Type: "ACCREC", // etc. LineItems: [ { Description: "Consulting services as agreed", // etc. Tracking: { TrackingCategory: { Name: "Activity/Workstream",...