Remove unused quote script

This commit is contained in:
redfast00 2020-01-16 09:18:50 +01:00
parent 60d03a8920
commit 3e617e93e4
No known key found for this signature in database
GPG key ID: 5946E0E34FD0553C
2 changed files with 0 additions and 8 deletions

View file

@ -1,7 +0,0 @@
$(function() {
return $.getJSON('./quotes.json', function(data) {
var quote;
quote = data[Math.floor(Math.random() * data.length)];
return $('#quote').append("<h3>" + quote.title + "</h3><p>" + quote.description + "</p>");
});
});

File diff suppressed because one or more lines are too long