()
| 191 | $d.append(`<div id="codePage" class="codePageStyle"></div>`); |
| 192 | var lines = va.split("\n"); |
| 193 | var displayLine = function () { |
| 194 | var nextLine = lines.shift(); |
| 195 | if (nextLine) { |
| 196 | var newLine = $("<li>" + nextLine + "</li>"); |
| 197 | $d.find("#codePage").append(newLine); |
| 198 | newLine.show(); |
| 199 | scroll(); |
| 200 | setTimeout(displayLine, 70); |
| 201 | } else { |
| 202 | $("#ok").css("color", ""); |
| 203 | $("#ok").text("OK (Abnormal conditions detected)"); |
| 204 | appendNormal( |
| 205 | `<h3>O-5 Council Registration Panel (unlockedddddddddd)</h3><blockquote><blockquote>SYSTEM INFO:<br><br>It is strictly forbidden to register for Level 5 Security Clearance without the consenting permission of the full O-5 Council. Please confirm that you have received approval before proceeding as failure to comply may result in summary execution. (INFO CODE 4855)</blockquote>As you have selected Level 5 Security Clearance (Highest Level), you are required to set up a personal authorization keyphrase for security purpose and the confidentiality of our confidential information.<br><br><span><div style="background-color:#000000; color:#ff0000">FINAL WARNING: You should not see this message without the permission of the O-5 Council. If you have successfully accessed this page without proper permission, you must report this to The Recordkeeping and Information Security Administration (RAISA) immediately. Failure to comply will result in immediate revocation and termination of all positions in the Foundation and the cancellation of all educational, medical, retirement and mortality benefits from your regional government, and the Foundation.</div></span><hr><small style='opacity:0.7'>The personal authorization keyphrase is an additional login credential to gain account access. (e.g. Now is the time for all good men to come to the aid of their party.)<br>You can choose the content of your personal authorization keyphrase as you wish.</small></blockquote>` |
| 206 | ); |
| 207 | $d.css({ |
| 208 | overflow: "auto", |
| 209 | }); |
| 210 | $d.find("#codePage").attr("id", ""); |
| 211 | scroll(); |
| 212 | cmdShow(); |
| 213 | } |
| 214 | }; |
| 215 | setTimeout(displayLine, 70); |
| 216 | }); |
| 217 | }, 1400); |
nothing calls this directly
no test coverage detected