Skip to content

Commit

Permalink
Updating Jquery to latest version. Closes issue mikekelly#99.
Browse files Browse the repository at this point in the history
  • Loading branch information
muxico73 committed Jul 26, 2019
1 parent ad9b865 commit c90a73c
Show file tree
Hide file tree
Showing 8 changed files with 10,605 additions and 9,799 deletions.
2 changes: 1 addition & 1 deletion browser.html
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ <h2>Embedded Resources</h2>
</div>
</script>

<script src="vendor/js/jquery-1.10.2.min.js"></script>
<script src="vendor/js/jquery-3.4.1.min.js"></script>
<script src="vendor/js/underscore.js"></script>
<script src="vendor/js/backbone.js"></script>
<script src="vendor/js/uritemplates.js"></script>
Expand Down
5 changes: 3 additions & 2 deletions js/hal/http/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ HAL.Http.Client.prototype.get = function(url) {
jqxhr: jqXHR,
headers: jqXHR.getAllResponseHeaders()
});
},
error: function() {
self.vent.trigger('fail-response', { jqxhr: jqxhr });
}
}).error(function() {
self.vent.trigger('fail-response', { jqxhr: jqxhr });
});
};

Expand Down
Loading

0 comments on commit c90a73c

Please sign in to comment.