Skip to content

Instantly share code, notes, and snippets.

@laiso
Created September 22, 2011 18:21
Show Gist options
  • Save laiso/1235566 to your computer and use it in GitHub Desktop.
Save laiso/1235566 to your computer and use it in GitHub Desktop.
var randnum = Math.floor( Math.random() * 5 );
var result = "";
switch(randnum){
case 0: result = "大吉"; break;
case 1: result = "末吉"; break;
case 2: result = "小吉"; break;
case 3: result = "凶"; break;
default: result = "しらん"; break;
}
post_call_api('/api/comment/191205',{
comment : result,
twit : 0
},
function(text){
location.href = baseuri+'/li/'+text;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment