Remove comment

This commit is contained in:
Alexey Zakharenkov 2019-06-21 15:59:24 +03:00
parent 455ea37ca9
commit c7442894fb

View file

@ -6,7 +6,7 @@ function slugify(name) {
function ajax(url, onSuccess, onError) {
var xhr = new XMLHttpRequest();
xhr.open('GET', url, true); // the third argument is true by default, it means that request will be async
xhr.open('GET', url);
xhr.onload = function(e) {
var responseText = e.target.responseText;
if (xhr.status === 200) {