Color picker UI fix

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2023-04-04 00:33:05 -07:00
parent 2d9ff795e3
commit 55857c910a

View file

@ -66,8 +66,13 @@
@section('moar_scripts')
<!-- bootstrap color picker -->
<script nonce="{{ csrf_token() }}">
//color picker with addon
$(".color").colorpicker();
$(function() {
$('.color').colorpicker({
color: '#AA3399',
format: 'hex'
});
});
</script>
@stop