Skip to content

Commit

Permalink
Removed stray tabs within the code editor div (thedevdojo#4377)
Browse files Browse the repository at this point in the history
  • Loading branch information
owenjones authored and fletch3555 committed Sep 5, 2019
1 parent 31cca3b commit 2660cc2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions resources/views/formfields/code_editor.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
<div id="{{ $row->field }}" data-theme="{{ @$options->theme }}" data-language="{{ @$options->language }}" class="ace_editor min_height_200" name="{{ $row->field }}">
{{ old($row->field, $dataTypeContent->{$row->field} ?? $options->default ?? '') }}
</div>
<div id="{{ $row->field }}" data-theme="{{ @$options->theme }}" data-language="{{ @$options->language }}" class="ace_editor min_height_200" name="{{ $row->field }}">{{ old($row->field, $dataTypeContent->{$row->field} ?? $options->default ?? '') }}</div>
<textarea name="{{ $row->field }}" id="{{ $row->field }}_textarea" class="hidden">{{ old($row->field, $dataTypeContent->{$row->field} ?? $options->default ?? '') }}</textarea>

0 comments on commit 2660cc2

Please sign in to comment.