Implemented a better inline editor for livecode.

- It shows the code like a textarea and the canvas will to the right
- It will take only the amount of height required for the code
- The existing LiveCodeEditor was renamed as LiveCodeEditorLarge and still
  used or sketches
This commit is contained in:
Anand Chitipothu
2021-03-29 18:56:48 +00:00
parent bc4503a636
commit 24bb0f2b2a
4 changed files with 111 additions and 15 deletions

View File

@@ -51,7 +51,11 @@
{% endmacro %}
{% macro render_section_text(s) %}
{{ frappe.utils.md_to_html(s.contents) }}
<div class="row">
<div class="col-md-9">
{{ frappe.utils.md_to_html(s.contents) }}
</div>
</div>
{% endmacro %}
{%- block script %}