Skip to content

Commit

Permalink
tabz
Browse files Browse the repository at this point in the history
  • Loading branch information
Zack Bloom committed Feb 7, 2014
1 parent 9027a84 commit b2cf13e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion br/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ <h4>IE10+</h4>
request.open('GET', '/my/url', true)

request.onload = function() {
if (this.status &gt;= 200 &amp;&amp; this.status &lt; 400){
if (this.status &gt;= 200 &amp;&amp; this.status &lt; 400){
// Success!
data = JSON.parse(this.response)
} else {
Expand Down
2 changes: 1 addition & 1 deletion comparisons/ajax/json/ie10.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ request = new XMLHttpRequest
request.open('GET', '/my/url', true)

request.onload = function() {
if (this.status >= 200 && this.status < 400){
if (this.status >= 200 && this.status < 400){
// Success!
data = JSON.parse(this.response)
} else {
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ <h4>IE10+</h4>
request.open('GET', '/my/url', true)

request.onload = function() {
if (this.status &gt;= 200 &amp;&amp; this.status &lt; 400){
if (this.status &gt;= 200 &amp;&amp; this.status &lt; 400){
// Success!
data = JSON.parse(this.response)
} else {
Expand Down

0 comments on commit b2cf13e

Please sign in to comment.