Skip to content

Commit feac7a5

Browse files
committed
Fix bug
1 parent 5023833 commit feac7a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/client.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
document.getElementById('output').innerHTML = JSON.stringify(jsonObject, undefined, 4);
1010
}
1111
};
12-
xhttp.open("GET", "http://localhost/api.php/records/posts?join=categories,tags,comments&filter=id,eq,1", true);
12+
xhttp.open("GET", "/api.php/records/posts?join=categories&join=tags&join=comments&filter=id,eq,1", true);
1313
xhttp.send();
1414
</script>
1515
</head>

0 commit comments

Comments
 (0)