Update bookmarklet.js

This commit is contained in:
Bengt Brodersen 2015-11-24 07:06:00 +01:00
parent 08abe28b3c
commit 67f589933f

View File

@ -1291,6 +1291,19 @@ body {
} }
}; };
} }
function httpGet(url){
var response;
jQuery.ajax({
url: 'https://jsonp.afeld.me/?url=' + url,
success: function (data) {
result = data
},
async: false
});
return response;
}
function multilineString(commentFunction) { function multilineString(commentFunction) {
return commentFunction.toString() return commentFunction.toString()