Merge pull request #12781 from snipe/fixes/color-picker-fix
Color picker UI fix
This commit is contained in:
commit
723ef36608
1 changed files with 7 additions and 2 deletions
|
@ -66,8 +66,13 @@
|
||||||
@section('moar_scripts')
|
@section('moar_scripts')
|
||||||
<!-- bootstrap color picker -->
|
<!-- bootstrap color picker -->
|
||||||
<script nonce="{{ csrf_token() }}">
|
<script nonce="{{ csrf_token() }}">
|
||||||
//color picker with addon
|
$(function() {
|
||||||
$(".color").colorpicker();
|
$('.color').colorpicker({
|
||||||
|
color: '#AA3399',
|
||||||
|
format: 'hex'
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@stop
|
@stop
|
||||||
|
|
Loading…
Add table
Reference in a new issue