🌦🏏 Checkpoint

./public/client.js:96831/492
This commit is contained in:
Glitch (hello-express) 2018-04-09 21:22:55 +00:00
parent eff0a17ccf
commit 1405803426
1 changed files with 1 additions and 24 deletions

View File

@ -42,27 +42,4 @@
dreamInput.focus();
};
})()
/*
$(function() {
console.log('hello world :o');
$.get('/dreams', function(dreams) {
dreams.forEach(function(dream) {
$('<li></li>').text(dream).appendTo('ul#dreams');
});
});
$('form').submit(function(event) {
event.preventDefault();
var dream = $('input').val();
$.post('/dreams?' + $.param({dream: dream}), function() {
$('<li></li>').text(dream).appendTo('ul#dreams');
$('input').val('');
$('input').focus();
});
});
});
*/
})()