From 868b705b7274c7a649d12794fd98f8769237a17c Mon Sep 17 00:00:00 2001 From: Martin Donnelly Date: Sat, 5 Aug 2017 23:43:02 +0100 Subject: [PATCH] gulp stuff --- public/javascripts/shorten.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/javascripts/shorten.js b/public/javascripts/shorten.js index 25952a2..1d9f210 100644 --- a/public/javascripts/shorten.js +++ b/public/javascripts/shorten.js @@ -8,7 +8,8 @@ $('#btn-shorten').on('click', function(){ const $link = $('#link'); const resultHTML = `${data.shortUrl}`; $link.html(resultHTML); - $link.hide().fadeIn('slow'); + // $link.hide().fadeIn('slow'); + $link.hide().show(); } });