Merge pull request #370 from ZeusWPI/remove-useless

Remove unused quote script
This commit is contained in:
redfast00 2020-01-16 11:04:43 +01:00 committed by GitHub
commit a5bab38384
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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