mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-02 22:21:01 +01: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
@ -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…
Reference in New Issue
Block a user