1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-22 14:51:17 -04:00

commit extra folders b/c CI deploy

This commit is contained in:
2018-05-02 09:00:27 -04:00
parent 13859007be
commit 7100bf726c
12 changed files with 341 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
jQuery(document).ready(function($) {
$.get('synonyms.txt', function(data) {
var synonyms = data.split("\n");
var line = Math.floor(synonyms.length * Math.random());
$('span#synonym').html(synonyms[line]);
});
});