Преглед на файлове

Segments - auto-grow textarea

Vijayakrishnan преди 3 години
родител
ревизия
e161a23f1e
променени са 1 файла, в които са добавени 8 реда и са изтрити 0 реда
  1. 8 0
      resources/views/app/patient/note/segment_script.blade.php

+ 8 - 0
resources/views/app/patient/note/segment_script.blade.php

@@ -239,6 +239,14 @@
 
         function init() {
 
+            $(document)
+                .off('input.auto-grow', '[visit-moe] form textarea')
+                .on('input.auto-grow', '[visit-moe] form textarea', function() {
+                    this.style.minHeight = "calc(1.5em + .5rem + 2px)";
+                    this.style.height = "calc(1.5em + .5rem + 2px)";
+                    this.style.height = (this.scrollHeight)+"px";
+                });
+
             let parent = $('.segments-list');
             initRTEs(parent);
             initSegmentMoes(parent);