瀏覽代碼

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);