Merge pull request #12781 from snipe/fixes/color-picker-fix

Color picker UI fix
This commit is contained in:
snipe 2023-04-04 00:34:07 -07:00 committed by GitHub
commit 723ef36608
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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