You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yacy_search_server/htroot/interaction_elements/interaction_metadata.js

22 lines
259 B

function getMetadata (url) {
var res = {"item": {"title": "no title"}};
$.ajaxSetup({async: false});
$.getJSON('/currentyacypeer/api/getpageinfo.json?url='+url, function(data) {
res = data;
});
return res;
}