git ssb

0+

ev / microbay



forked from Dominic / patchbay

Commit 73c3ab054f0fd65bbee61b9f703eaf2e489b9dbd

Don't change composer height if it has text in it

Charles Lehner committed on 9/9/2016, 4:20:10 PM
Parent: 4689a245257fb4fbdda64f8199082f40541fdee4

Files changed

modules/compose.jschanged
modules/compose.jsView
@@ -27,9 +27,11 @@
2727
2828 var blur
2929 ta.addEventListener('focus', function () {
3030 clearTimeout(blur)
31- ta.style.height = '200px'
31+ if(!ta.value) {
32+ ta.style.height = '200px'
33+ }
3234 accessories.style.display = 'block'
3335 })
3436 ta.addEventListener('blur', function () {
3537 //don't shrink right away, so there is time

Built with git-ssb-web