Open scambra opened 8 years ago
Hi,
When this patch is planned to be released? Is correct to keep the other two #linkText ?
function replaceUrl() {
if ($('#linkText').css('display') == 'block') {
var curUrl = $('#linkText').val();
$('#linkText').val('Please wait...');
makeUrl(curUrl);
}
}
function makeUrl(curUrl, partUrl) {
var shortenurl = OC.linkTo("shorten","makeurl").replace("apps/shorten","index.php/apps/shorten");
$.post(shortenurl, { curUrl: curUrl }, function (data) {
$('#linkText').val(data);
});
}
Fix for #3