main #8
1 changed files with 23 additions and 21 deletions
|
@ -4,37 +4,39 @@ const ntfyButton = document.getElementById("ntfy-send");
|
|||
// Random placeholder
|
||||
|
||||
function getPlaceholder() {
|
||||
placeholderSelector = (Math.floor(Math.random()*8) +1);
|
||||
switch(placeholderSelector) {
|
||||
placeholderSelector = Math.floor(Math.random() * 8) + 1;
|
||||
switch (placeholderSelector) {
|
||||
case 1:
|
||||
ntfyInput.placeholder='hi nelle! (。>﹏<。)';
|
||||
break;
|
||||
ntfyInput.placeholder = "hi nelle! (。>﹏<。)";
|
||||
break;
|
||||
case 2:
|
||||
ntfyInput.placeholder='(╹◡╹)凸';
|
||||
break;
|
||||
ntfyInput.placeholder = "(╹◡╹)凸";
|
||||
break;
|
||||
case 3:
|
||||
ntfyInput.placeholder='Confession of sin: I dont like SciAdv';
|
||||
break;
|
||||
ntfyInput.placeholder = "Confession of sin: I dont like SciAdv";
|
||||
break;
|
||||
case 4:
|
||||
ntfyInput.placeholder='Knock Knock...';
|
||||
break;
|
||||
ntfyInput.placeholder = "Knock Knock...";
|
||||
break;
|
||||
case 5:
|
||||
ntfyInput.placeholder='El. Psy. Kongroo.';
|
||||
break;
|
||||
ntfyInput.placeholder = "El. Psy. Kongroo.";
|
||||
break;
|
||||
case 6:
|
||||
ntfyInput.placeholder='the organization is after you.';
|
||||
break;
|
||||
ntfyInput.placeholder = "the organization is after you.";
|
||||
break;
|
||||
case 7:
|
||||
ntfyInput.placeholder='you wouldnt happen to know where an IBN5100 is, would you?';
|
||||
break;
|
||||
ntfyInput.placeholder =
|
||||
"you wouldnt happen to know where an IBN5100 is, would you?";
|
||||
break;
|
||||
case 8:
|
||||
ntfyInput.placeholder='if you had to choose, between: bacon, unlimited bacon, but no games. or. games. unlimited games, but no games. which would you pick?';
|
||||
break;
|
||||
ntfyInput.placeholder =
|
||||
"if you had to choose, between: bacon, unlimited bacon, but no games. or. games. unlimited games, but no games. which would you pick?";
|
||||
break;
|
||||
case 9:
|
||||
ntfyInput.placeholder='time travel?';
|
||||
break;
|
||||
ntfyInput.placeholder = "time travel?";
|
||||
break;
|
||||
default:
|
||||
ntfyInput.placeholder='type some words and hit send';
|
||||
ntfyInput.placeholder = "type some words and hit send";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue