mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-11 16:51:31 -04:00
search results functionality
This commit is contained in:
parent
4ba31236e9
commit
85fff21068
9 changed files with 105 additions and 115 deletions
|
@ -246,8 +246,6 @@ class App {
|
|||
|
||||
/**
|
||||
* Sets up the adjustable splitter to allow the user to resize areas of the page.
|
||||
*
|
||||
* @param {boolean} [minimise=false] - Set this flag if attempting to minimise frames to 0 width
|
||||
*/
|
||||
buildUI() {
|
||||
if (this.isMobileView()) {
|
||||
|
@ -259,6 +257,8 @@ class App {
|
|||
|
||||
/**
|
||||
* Set desktop splitters
|
||||
*
|
||||
* @param {boolean} minimise
|
||||
*/
|
||||
setDesktopSplitter(minimise) {
|
||||
if (this.columnSplitter) this.columnSplitter.destroy();
|
||||
|
@ -269,7 +269,7 @@ class App {
|
|||
minSize: minimise ? [0, 0, 0] : [360, 330, 310],
|
||||
gutterSize: 4,
|
||||
expandToMin: true,
|
||||
onDrag: debounce(function() {
|
||||
onDrag: debounce(() => {
|
||||
this.adjustComponentSizes();
|
||||
}, 50, "dragSplitter", this, [])
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue