Skip to content

Commit

Permalink
Update source/ajax/xhr.js
Browse files Browse the repository at this point in the history
Updated fix for IE8 issue -- need a string comparison to "80" instead of numeric to pass.

Enyo-DCO-1.0-Signed-Off-By: Ben Combee (ben.combee@palm.com)
  • Loading branch information
unwiredben committed Oct 18, 2012
1 parent a924245 commit df64fd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/ajax/xhr.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ enyo.xhr = {
if (a.protocol === ":" ||
(a.protocol === window.location.protocol &&
a.hostname === window.location.hostname &&
a.port === (window.location.port || 80))) {
a.port === (window.location.port || "80"))) {
result = true;
}
return result;
Expand Down

0 comments on commit df64fd8

Please sign in to comment.