mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-08 07:21:02 -04:00
[#181] remove scattered todos and aggregate in temporary todo.txt file, add new css files to split up huge IO stylesheet for better future DevX
This commit is contained in:
parent
7648c6dce4
commit
2093dac4f9
13 changed files with 1 additions and 6 deletions
|
@ -4,7 +4,6 @@
|
||||||
* @license Apache-2.0
|
* @license Apache-2.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// @TODO: NTS return this to original? ( it breaks dev though )
|
|
||||||
// import OperationConfig from "./config/OperationConfig.json" assert {type: "json"};
|
// import OperationConfig from "./config/OperationConfig.json" assert {type: "json"};
|
||||||
import OperationConfig from "./config/OperationConfig.json";
|
import OperationConfig from "./config/OperationConfig.json";
|
||||||
import OperationError from "./errors/OperationError.mjs";
|
import OperationError from "./errors/OperationError.mjs";
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
// @TODO: NTS return this to original? ( it breaks dev though )
|
|
||||||
// import OperationConfig from "../config/OperationConfig.json" assert {type: "json"};
|
// import OperationConfig from "../config/OperationConfig.json" assert {type: "json"};
|
||||||
import OperationConfig from "../config/OperationConfig.json";
|
import OperationConfig from "../config/OperationConfig.json";
|
||||||
import Utils, { isWorkerEnvironment } from "../Utils.mjs";
|
import Utils, { isWorkerEnvironment } from "../Utils.mjs";
|
||||||
|
|
|
@ -59,7 +59,6 @@ class App {
|
||||||
setup() {
|
setup() {
|
||||||
document.dispatchEvent(this.manager.appstart);
|
document.dispatchEvent(this.manager.appstart);
|
||||||
|
|
||||||
// @TODO: add a window resize listener
|
|
||||||
if ( window.innerWidth >= this.breakpoint ) {
|
if ( window.innerWidth >= this.breakpoint ) {
|
||||||
this.initialiseSplitter();
|
this.initialiseSplitter();
|
||||||
this.setCompileMessage();
|
this.setCompileMessage();
|
||||||
|
|
|
@ -198,7 +198,6 @@
|
||||||
data-help="<p>The Operations list contains all the operations in CyberChef arranged into categories. Some operations may be present in multiple categories. You can search for operations using the search box.</p><p>To use an operation, either double click it, or drag it into the Recipe pane. You will then be able to configure its arguments (or 'Ingredients' in CyberChef terminology).</p>">
|
data-help="<p>The Operations list contains all the operations in CyberChef arranged into categories. Some operations may be present in multiple categories. You can search for operations using the search box.</p><p>To use an operation, either double click it, or drag it into the Recipe pane. You will then be able to configure its arguments (or 'Ingredients' in CyberChef terminology).</p>">
|
||||||
Operations
|
Operations
|
||||||
|
|
||||||
<!--@TODO: this should just be removed, however that currently breaks some code-->
|
|
||||||
<span class="pane-controls hide-on-maximised-output">
|
<span class="pane-controls hide-on-maximised-output">
|
||||||
<button type="button"
|
<button type="button"
|
||||||
class="btn btn-warning bmd-btn-icon"
|
class="btn btn-warning bmd-btn-icon"
|
||||||
|
@ -217,7 +216,7 @@
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="foo">
|
<div class="dropdown-operations">
|
||||||
<input id="search"
|
<input id="search"
|
||||||
type="search"
|
type="search"
|
||||||
class="form-control"
|
class="form-control"
|
||||||
|
|
0
src/web/stylesheets/components/_recipe.css
Normal file
0
src/web/stylesheets/components/_recipe.css
Normal file
0
src/web/stylesheets/components/io/_file-details.css
Normal file
0
src/web/stylesheets/components/io/_file-details.css
Normal file
0
src/web/stylesheets/components/io/_highlighting.css
Normal file
0
src/web/stylesheets/components/io/_highlighting.css
Normal file
0
src/web/stylesheets/components/io/_icons.css
Normal file
0
src/web/stylesheets/components/io/_icons.css
Normal file
0
src/web/stylesheets/components/io/_search-results.css
Normal file
0
src/web/stylesheets/components/io/_search-results.css
Normal file
0
src/web/stylesheets/components/io/_status-bar.css
Normal file
0
src/web/stylesheets/components/io/_status-bar.css
Normal file
0
src/web/stylesheets/components/io/_tabs.css
Normal file
0
src/web/stylesheets/components/io/_tabs.css
Normal file
0
src/web/todo.txt
Normal file
0
src/web/todo.txt
Normal file
|
@ -34,7 +34,6 @@ class OperationsWaiter {
|
||||||
* @param {HTMLElement} elm
|
* @param {HTMLElement} elm
|
||||||
* @param {boolean} isVisible
|
* @param {boolean} isVisible
|
||||||
*
|
*
|
||||||
* @TODO: this is pretty generic so probably move it ( to manager? )
|
|
||||||
*/
|
*/
|
||||||
isVisible( elm, isVisible ){
|
isVisible( elm, isVisible ){
|
||||||
if ( isVisible ) {
|
if ( isVisible ) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue