This commit is contained in:
Martin Donnelly 2017-09-05 15:57:00 +01:00
parent d4bab117da
commit 708cf03dec

View File

@ -1,26 +1,26 @@
function shorten(){
$.ajax({
url: '/api/v1/shorten',
type: 'POST',
dataType: 'JSON',
data: {url: $('#url-field').val()},
success: function(data){
console.log('data', data);
const $link = $('#link');
const resultHTML = `<a class="result" href="${data.shortUrl}">${data.shortUrl}</a>`;
$link.html(resultHTML);
$link.hide().fadeIn('slow');
function shorten() {
$.ajax({
url: '/api/v1/shorten',
type: 'POST',
dataType: 'JSON',
data: { url: $('#url-field').val() },
success: data => {
console.log('data', data);
const $link = $('#link');
const resultHTML = `<a class="result" href="${data.shortUrl}">${data.shortUrl}</a>`;
$link.html(resultHTML);
$link.hide().fadeIn('slow');
}
});
}
});
}
$("#url-field").keyup(function(event){
if(event.keyCode === 13){
$("#btn-shorten").click();
}
$('#url-field').keyup( (event) => {
if(event.keyCode === 13)
$('#btn-shorten').click();
});
$('#btn-shorten').on('click', function(){
shorten();
});
$('#btn-shorten').on('click', () => {
shorten();
});