Только у меня увеличивается вниз поле для ввода текста при наборе символов или у всех так ?
Судя по всему за расползание текстового поля отвечает кусок кода в forms.js
$(document).ready(function() {
var resizeTextArea = function(node) {
var height = Math.min($(window).height() * 0.9, node.scrollHeight + 2);
if (height > node.clientHeight) {
node.style.height = "auto";
node.style.height = height + "px";
}
};
$("textarea.autoresize").each(function() {
resizeTextArea(this);
}).on("input", function() {
if (detectIE() == false) {
resizeTextArea(this);
}
});
Глюки journals
[Print]
the_Dark_One