all local assets

This commit is contained in:
2019-07-17 14:29:42 -04:00
parent 7c6a1a181c
commit e9cdc87554
12 changed files with 21079 additions and 7 deletions
+7
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]);
});
});
+4
View File
File diff suppressed because one or more lines are too long