gulp stuff

This commit is contained in:
Martin Donnelly 2017-08-05 23:43:02 +01:00
parent 25e934452d
commit 868b705b72

View File

@ -8,7 +8,8 @@ $('#btn-shorten').on('click', function(){
const $link = $('#link'); const $link = $('#link');
const resultHTML = `<a class="result" href="${data.shortUrl}">${data.shortUrl}</a>`; const resultHTML = `<a class="result" href="${data.shortUrl}">${data.shortUrl}</a>`;
$link.html(resultHTML); $link.html(resultHTML);
$link.hide().fadeIn('slow'); // $link.hide().fadeIn('slow');
$link.hide().show();
} }
}); });