Hello I am using summernote in my laravel project , all work fine , except in create and edit view there is unnecessary bar () on the top of the page . my code below :
setup :
<link rel="stylesheet" href="{{asset('assets/js/vendor/summernote/dist/summernote.css')}}">
<script src="{{asset('assets/js/vendor/summernote/dist/summernote.js')}}"></script>
the html:
<textarea class="form-control summernote"
name="special_notes" id="special_notes"
placeholder="Enter special notes here...">
{{ old('special_notes', optional($tblProperty)->special_notes) }}</textarea>
the script :
$(document).ready(function() {
$('.summernote').summernote({
height:300,
});
});
i updated the the summernote.js by editing the line 170 adding the css style : style="display:none !important;" this has fix my problem .
the line became : '',
i followed the comment on the link :https://github.com/summernote/summernote/issues/2516