Merge branch 'unzipmod' of https://github.com/bwhitn/CyberChef into bwhitn-unzipmod

This commit is contained in:
n1474335 2017-07-03 15:28:12 +00:00
commit 2400de337b
3 changed files with 18 additions and 0 deletions

View file

@ -977,6 +977,12 @@ const Utils = {
"aria-controls='collapse" + i + "' " +
"title=\"Show/hide contents of '" + Utils.escapeHtml(file.fileName) + "'\">&#x1F50D</a>";
const hexFileData = Utils.byteArrayToHex(new Uint8Array(file.bytes));
const switchFileDataToInput = "<a href='#switchFileToInput" + i + "' " +
"class='file-switch' " +
"fileValue='" + hexFileData + "'>&#x21E7</a>";
const html = "<div class='panel panel-default'>" +
"<div class='panel-heading' role='tab' id='heading" + i + "'>" +
"<h4 class='panel-title'>" +
@ -984,6 +990,7 @@ const Utils = {
Utils.escapeHtml(file.fileName) +
" " + expandFileContentsElem +
" " + downloadAnchorElem +
" " + switchFileDataToInput +
"<span class='pull-right'>" +
// These are for formatting when stripping HTML
"<span style='display: none'>\n</span>" +