mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 14:56:19 -04:00
This adds the ability to move the file data from Utils.displayFilesAsHTML to the input.
This commit is contained in:
parent
213ec028b8
commit
4143bba89f
3 changed files with 18 additions and 0 deletions
|
@ -942,6 +942,12 @@ const Utils = {
|
|||
"aria-controls='collapse" + i + "' " +
|
||||
"title=\"Show/hide contents of '" + Utils.escapeHtml(file.fileName) + "'\">🔍</a>";
|
||||
|
||||
const hexFileData = Utils.byteArrayToHex(new Uint8Array(file.bytes));
|
||||
|
||||
const switchFileDataToInput = "<a href='#switchFileToInput" + i + "' " +
|
||||
"class='file-switch' " +
|
||||
"fileValue='" + hexFileData + "'>⇧</a>";
|
||||
|
||||
const html = "<div class='panel panel-default'>" +
|
||||
"<div class='panel-heading' role='tab' id='heading" + i + "'>" +
|
||||
"<h4 class='panel-title'>" +
|
||||
|
@ -949,6 +955,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>" +
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue