This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <!-- A usable HTML template for input-history overlay using Browser Source and Websocket --> | |
| <!-- ONLY KEYBOARD INPUT AS OF NOW --> | |
| <!-- By: https://github.com/christiankyle-ching/ --> | |
| <!-- Edited By: https://github.com/ecwu/ --> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>input-history Windows</title> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function tableMaker(num,name,status,detail,domain,style){ | |
| var table = "<td>" + num + "</td>" + "<td>" + name + "</td>" + "<td class='" + style + "'>" + status + "</td>" + "<td>" + detail + "</td>" + "<td>" + domain + "</td>"; | |
| return table; | |
| } | |
| function inlineContentsGenerator(order,requestUrl,siteName,id){ | |
| respondCode = get_status_code(requestUrl); | |
| if (respondCode === "200"){ | |
| var contents = tableMaker(order,siteName,"Service Online",parseInt(respondCode),requestUrl,"btn-success"); | |
| }else{ |