19 lines
639 B
JavaScript
19 lines
639 B
JavaScript
|
|
/* Messages for "Why is the DLR shut today?"
|
||
|
|
*
|
||
|
|
* Fill this array with your own reasons. One string per entry.
|
||
|
|
* On every page load (and every "Check again" click) one entry is
|
||
|
|
* picked at random and shown in the centre of the screen.
|
||
|
|
*
|
||
|
|
* Keep them short — roughly a sentence — so they fit the large display
|
||
|
|
* text. HTML is NOT rendered; entries are inserted as plain text.
|
||
|
|
*
|
||
|
|
* Replace the placeholders below with your own content.
|
||
|
|
*/
|
||
|
|
|
||
|
|
const MESSAGES = [
|
||
|
|
"PLACEHOLDER: write your first reason here",
|
||
|
|
"PLACEHOLDER: write another reason here",
|
||
|
|
// Add as many entries as you like, one per line:
|
||
|
|
// "Your reason here",
|
||
|
|
];
|