updateShortLinks: function () {
let fto = $('#linkeditor-panel-form').find('[name="to"]');
- console.log(fto);
if (fto.length === 0) {
return;
}
let val = $(fto).val();
if (SHORTENED_LINKS[val] !== undefined) {
- $(fto).after('<p class="help-block">' + TRANSLATIONS.short_link + ': <strong><a href="' + SHORTENED_LINKS[val] + '" target="_blank">' + SHORTENED_LINKS[val].replace('https://', '') + '</a></strong></p>');
+ if ($(fto).next('.help-block').length === 0) {
+ $(fto).after('<p class="help-block"></p>');
+ }
+ $(fto).next('.help-block').html(TRANSLATIONS.short_link + ': <strong><a href="' + SHORTENED_LINKS[val] + '" target="_blank">' + SHORTENED_LINKS[val].replace('https://', '') + '</a></strong>');
$(fto).addClass('short');
} else {
- $(fto).next('.help-block').remove();
+ $(fto).next('.help-block').html('');
$(fto).removeClass('short');
}
},