Added new Text Files (downloadable) and their corresponding Terminal commands. Added sprintf and vsprintf.

This commit is contained in:
danielyxie
2017-10-12 15:10:34 -05:00
parent dbb4a93a78
commit 4186326771
9 changed files with 388 additions and 107 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ function dialogBoxCreate(txt) {
closeButton.innerHTML = "×"
var textE = document.createElement("p");
textE.innerHTML = txt;
textE.innerHTML = txt.replace(/(?:\r\n|\r|\n)/g, '<br>');
content.appendChild(closeButton);
content.appendChild(textE);