Revert "Slight optimization in the textarea code"

This commit is contained in:
Jérémie Astori 2016-07-16 23:38:20 -04:00 committed by GitHub
parent 9d547315f7
commit e599f9d69f

View File

@ -632,8 +632,6 @@ $(function() {
.history() .history()
.on("input keyup", function() { .on("input keyup", function() {
var style = window.getComputedStyle(this); var style = window.getComputedStyle(this);
var origHeight = this.style.height;
this.style.height = "0px"; this.style.height = "0px";
this.offsetHeight; // force reflow this.offsetHeight; // force reflow
this.style.height = Math.min( this.style.height = Math.min(
@ -643,9 +641,7 @@ $(function() {
+ Math.round(parseFloat(style.borderBottomWidth) || 0) + Math.round(parseFloat(style.borderBottomWidth) || 0)
) + "px"; ) + "px";
if (this.style.height !== origHeight) { $("#chat .chan.active .chat").trigger("msg.sticky"); // fix growing
$("#chat .chan.active .chat").trigger("msg.sticky"); // fix growing
}
}) })
.tab(complete, {hint: false}); .tab(complete, {hint: false});