fix error + format
This commit is contained in:
+9
-6
@@ -1,10 +1,13 @@
|
||||
const warn_messages = [
|
||||
["%cDo not paste any text in here","background: red; color: yellow; font-size: x-large"],
|
||||
["Pasting anything in here may give others access to your account."]
|
||||
[
|
||||
'%cDo not paste any text in here',
|
||||
'background: red; color: yellow; font-size: x-large',
|
||||
],
|
||||
['Pasting anything in here may give others access to your account.'],
|
||||
]
|
||||
function warnmessage() {
|
||||
for (let message of warn_messages) {
|
||||
console.log(message[0],message[1]);
|
||||
}
|
||||
for (let message of warn_messages) {
|
||||
console.log(message[0], message[1])
|
||||
}
|
||||
}
|
||||
const warn_message_int = setInterval(warnmessage,3000)
|
||||
const warn_message_int = setInterval(warnmessage, 3000)
|
||||
|
||||
Reference in New Issue
Block a user