I was encountering an issue with an automatic resizing text box which would push the inputs below it down. On a seemingly random basis, the placeholder of an input below the auto-resizing input would not update (e.g. wouldn't move down). Adding the code below on line 165 seemed to fix the issue.
$('input').on("resize", function() {
positionPlaceholder(placeholder,input);
});
Screenshot of the problem:
