mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-08 15:25:01 -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");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue