Michael Stramel
Michael Stramel
@e111077 @bicknellr PTAL
@notwaldorf I couldn't get it to pass shady dom with 1.0.6 or 1.0.7 running through `polymer serve` on https://github.com/MaritzSTL/mtz-update-password. However, travis ran it headless and it passed. Not sure if...
The build shouldn't be causing you to not be able to download it. How are you trying to download it?
I'm not able to reproduce, can one of you provide a jsfiddle or plunker that can reproduce this issue?
I don't believe this is a bug with `iron-ajax`. When `composed` is false it doesn't hit the "BUG" log statement. However, it may be a bug with Chrome handling `bubbles:...
Hmmm looks like maybe the code got shifted around accidentally? https://github.com/PolymerElements/iron-ajax/blob/master/iron-request.html#L249 https://github.com/PolymerElements/iron-ajax/blob/master/iron-request.html#L281 Looks like it is also affecting `jsonPrefix`
You should be able to cancel before in-flight by using the `iron-ajax-presend` event. ```js this.$.ajax.addEventListener('iron-ajax-presend', (e) => { if (condition) { e.preventDefault(); e.stopPropagation(); } }); ``` if you want to...
Good discussions https://github.com/whatwg/xhr/issues/34
:+1: using lazy-imports
I am also getting this issue. The referenced PR does fix it but I'm not sure it is the best fix. **UPDATE:** Seems related to the use of `async` attribute...