You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
859 B
33 lines
859 B
<style> |
|
.editormd-fullscreen {z-index: 99999999;} |
|
</style> |
|
|
|
<div class="{{$viewClass['form-group']}}"> |
|
|
|
<label class="{{$viewClass['label']}} control-label">{!! $label !!}</label> |
|
|
|
<div class="{{$viewClass['field']}}"> |
|
|
|
@include('admin::form.error') |
|
|
|
<div class="{{$class}}" {!! $attributes !!}> |
|
<textarea class="d-none" name="{{$name}}" placeholder="{{ $placeholder }}">{!! $value !!}</textarea> |
|
</div> |
|
|
|
@include('admin::form.help-block') |
|
|
|
</div> |
|
</div> |
|
|
|
<script first> |
|
var ele = window.Element; |
|
Dcat.eMatches = ele.prototype.matches || |
|
ele.prototype.msMatchesSelector || |
|
ele.prototype.webkitMatchesSelector; |
|
</script> |
|
|
|
<script require="@editor-md-form" init="{!! $selector !!}"> |
|
editormd(id, {!! $options !!}); |
|
|
|
Element.prototype.matches = Dcat.eMatches; |
|
</script>
|
|
|