mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-07 06:57:12 -04:00
bit of refactoring
This commit is contained in:
parent
793acb54de
commit
f1257ea356
3 changed files with 9 additions and 14 deletions
|
@ -330,7 +330,11 @@ class App {
|
|||
}
|
||||
|
||||
/**
|
||||
* Set mobile splitters
|
||||
* Set mobile layout
|
||||
*
|
||||
* We don't actually use splitters on mobile, but we leverage the splitters
|
||||
* to create our desired layout. This prevents some problems when resizing
|
||||
* from mobile to desktop and vice versa
|
||||
*/
|
||||
setMobileSplitter() {
|
||||
if (this.columnSplitter) this.columnSplitter.destroy();
|
||||
|
@ -860,15 +864,7 @@ class App {
|
|||
*
|
||||
*/
|
||||
updateVisibility( elm, isVisible ){
|
||||
if ( isVisible ) {
|
||||
if ( elm.classList.contains("hidden")) {
|
||||
elm.classList.remove("hidden");
|
||||
}
|
||||
} else if ( isVisible === false ) {
|
||||
if ( !elm.classList.contains("hidden")){
|
||||
elm.classList.add("hidden");
|
||||
}
|
||||
}
|
||||
isVisible ? elm.classList.remove("hidden") : elm.classList.add("hidden");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -7,7 +7,6 @@
|
|||
- need long press checks on mobile to add favourites ( recipe is done ) >
|
||||
- check on window resizing
|
||||
|
||||
- raw bites dropup thingy is unusable
|
||||
- shannon entropy thingies
|
||||
|
||||
- backspace on fs view should close max view. Keep making the same mistake and navigating away when for instance recipe is expanded and double click the window to fs > resolve. Reset layout
|
||||
|
|
|
@ -346,9 +346,9 @@ class OperationsWaiter {
|
|||
search.value = '';
|
||||
}
|
||||
|
||||
this.app.updateVisibility(document.getElementById( "categories"), false );
|
||||
this.app.updateVisibility(document.getElementById( "search-results"), false );
|
||||
this.app.updateVisibility(document.getElementById("close-operations-dropdown"), false );
|
||||
this.app.updateVisibility(document.getElementById("categories"), false);
|
||||
this.app.updateVisibility(document.getElementById("search-results"), false);
|
||||
this.app.updateVisibility(document.getElementById("close-operations-dropdown"), false);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue