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.
|
|
|
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;
|
|
|
|
|
|
}
|
|
|