aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/default
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2016-11-02 15:29:52 +0100
committerArthurHoaro <arthur@hoa.ro>2016-11-05 14:29:53 +0100
commit7a50e56a6373c572cf5589d7dd427ae2b07edb36 (patch)
tree4a8addc40b18a82839b17e5a77049a6549745682 /tpl/default
parent1ba0de74a52e2c3fabd161e8ae1d67c58d429147 (diff)
downloadShaarli-7a50e56a6373c572cf5589d7dd427ae2b07edb36.tar.gz
Shaarli-7a50e56a6373c572cf5589d7dd427ae2b07edb36.tar.zst
Shaarli-7a50e56a6373c572cf5589d7dd427ae2b07edb36.zip
Fix an issue with textarea resizing
Diffstat (limited to 'tpl/default')
-rw-r--r--tpl/default/editlink.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/tpl/default/editlink.html b/tpl/default/editlink.html
index 19154d87..369b0a1d 100644
--- a/tpl/default/editlink.html
+++ b/tpl/default/editlink.html
@@ -80,7 +80,7 @@
80 } 80 }
81 81
82 function textAreaAdjust(el) { 82 function textAreaAdjust(el) {
83 el.style.height = (el.scrollHeight > el.clientHeight) ? (el.scrollHeight)+"px" : (el.clientHeight-8)+"px"; 83 el.style.height = (el.scrollHeight > el.clientHeight) ? (el.scrollHeight)+"px" : (el.clientHeight-18)+"px";
84 } 84 }
85</script> 85</script>
86</body> 86</body>