-
Notifications
You must be signed in to change notification settings - Fork 130
/
Copy pathmain.js
41 lines (34 loc) · 1001 Bytes
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
$(function() {
// Populate using an object literal
// WTF.init({
// heading: [
// "It's a fucking",
// "Check this shit out, a fucking"
// ],
// response: [
// "Already fucking seen one",
// "Give me a-fucking-nother one",
// "Don't really give a fuck"
// ],
// template: [
// "Big @color @animal",
// "Silly @animal with @color fur"
// ],
// animal: [
// "dog",
// "cat",
// "rabbit"
// ],
// color: [
// "red",
// "blue",
// "green",
// "yellow"
// ]
// });
// Populate using a JSON file
// WTF.init( 'sample.json' );
// Populate using a Google spreadsheet ID (you must publish it first!)
// @see https://support.google.com/drive/answer/37579?hl=en
WTF.init( '0AvG1Hx204EyydF9ub1M2cVJ3Z1VGdDhTSWg0ZV9LNGc' );
});