Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
add IE9 support via trivial fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
sorvell committed Sep 27, 2013
1 parent a65fd2c commit 4f59035
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HTMLImports.js
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ xhr = xhr || {
request.addEventListener('readystatechange', function(e) {
if (request.readyState === 4) {
next.call(nextContext, !xhr.ok(request) && request,
request.response, url);
request.response || request.responseText, url);
}
});
request.send();
Expand Down

0 comments on commit 4f59035

Please sign in to comment.