Skip to content

Commit

Permalink
entityshape #26 - remove extraneous console.log lines
Browse files Browse the repository at this point in the history
  • Loading branch information
Teester committed Jul 6, 2024
1 parent b10111a commit 8b774f3
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions script.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,17 +122,14 @@ function entityschema_checkEntity(entity, entitySchema, language) {

let url = "https://entityshape.toolforge.org/api/v2?entityschema=" + entitySchema + "&entity=" + entity + "&language=" + language;
// let url = "http://127.0.0.1:5000/api/v2 ?entityschema=" + entitySchema + "&entity=" + entity + "&language=" + language;
console.log("here")
$.ajax({
type: "GET",
dataType: "json",
url: url,
beforeSend: function() {
$(".entityshape-spinner").show();
console.log("before")
},
success: function(data){
console.log("success")
let html = "";
for (let i = 0; i < data.schema.length; i++ ) {
if (data.properties[i]) {
Expand Down

0 comments on commit 8b774f3

Please sign in to comment.