mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 15:26:16 -04:00
Fix parse colour code operation.
The interactive part broke due to changes for multiple inputs. Now fires the inputChange event with a fake keyup event to autobake
This commit is contained in:
parent
a7938526aa
commit
19553dcfed
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ CMYK: ${cmyk}
|
||||||
}).on('colorpickerChange', function(e) {
|
}).on('colorpickerChange', function(e) {
|
||||||
var color = e.color.string('rgba');
|
var color = e.color.string('rgba');
|
||||||
document.getElementById('input-text').value = color;
|
document.getElementById('input-text').value = color;
|
||||||
window.app.autoBake();
|
window.app.manager.input.debounceInputChange(new Event("keyup"));
|
||||||
});
|
});
|
||||||
</script>`;
|
</script>`;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue