File "porte_plume_forcer_hauteur.js"
Full path: /home/argothem/www/v4_old/plugins-dist/porte_plume/javascript/porte_plume_forcer_hauteur.js
File size: 751 bytes
MIME-type: text/plain
Charset: utf-8
function barre_forcer_hauteur () {
jQuery(".markItUpEditor", this == window ? null : this).each(function() {
var hauteur_min = jQuery(this).height();
var hauteur_max = parseInt(jQuery(window).height()) - 200;
var hauteur = hauteur_min;
var signes = jQuery(this).val().length;
if (signes){
/* en gros: 400 signes donnent 100 pixels de haut */
var hauteur_signes = Math.round(signes / 4) + 50;
if (hauteur_signes > hauteur_min && hauteur_signes < hauteur_max) {
hauteur = hauteur_signes;
} else {
if (hauteur_signes > hauteur_max) {
hauteur = hauteur_max;
}
}
jQuery(this).height(hauteur);
}
});
}
jQuery(window).on("load", function() {
barre_forcer_hauteur();
onAjaxLoad(barre_forcer_hauteur);
});