mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-11 08:41:32 -04:00
[#181] disable tooltips on mobile UI
This commit is contained in:
parent
7fff6f51dc
commit
8bed81c5ee
5 changed files with 15 additions and 37 deletions
|
@ -1400,33 +1400,6 @@ class OutputWaiter {
|
|||
switchButton.firstElementChild.innerHTML = "open_in_browser";
|
||||
}
|
||||
|
||||
/**
|
||||
* Handler for maximise output click events.
|
||||
* Resizes the output frame to be as large as possible, or restores it to its original size.
|
||||
*/
|
||||
// maximiseOutputClick(e) {
|
||||
// const el = e.target.id === "maximise-output" ? e.target : e.target.parentNode;
|
||||
//
|
||||
// if (el.getAttribute("data-original-title").indexOf("Maximise") === 0) {
|
||||
// document.body.classList.add("output-maximised");
|
||||
// this.app.initialiseSplitter(true);
|
||||
// this.app.columnSplitter.collapse(0);
|
||||
// this.app.columnSplitter.collapse(1);
|
||||
// this.app.ioSplitter.collapse(0);
|
||||
//
|
||||
// $(el).attr("data-original-title", "Restore output pane");
|
||||
// el.querySelector("i").innerHTML = "fullscreen_exit";
|
||||
// } else {
|
||||
// document.body.classList.remove("output-maximised");
|
||||
// $(el).attr("data-original-title", "Maximise output pane");
|
||||
// el.querySelector("i").innerHTML = "fullscreen";
|
||||
// this.app.initialiseSplitter(false);
|
||||
// // if ( window.innerWidth >= this.app.breakpoint ){
|
||||
// // this.app.resetLayout();
|
||||
// // }
|
||||
// }
|
||||
// }
|
||||
|
||||
|
||||
/**
|
||||
* Handler for find tab button clicked
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue