mimic-sussex / sema

Sema – A Playground for Live Coding Music and Machine Learning
https://sema.codes
MIT License
151 stars 51 forks source link

Editors – Critical bug on text editing – focus, selection, text-entry – compromising interaction #258

Closed frantic0 closed 3 years ago

frantic0 commented 3 years ago

@chriskiefer @thormagnusson

It is sorted now, no more editing issues

codemirror which isn't resize-friendly, this is what I had to do

let container;

new ResizeObserver( e => codeMirror.setSize("100%", "100%"))
        .observe(container);

<div  bind:this={ container }
      class="codemirror-container layout-template-container scrollable"
      >

  <CodeMirror bind:this={ codeMirror }

</div>