2013-12-18, 03:43 PM
I have an issue with textarea in edit signature template so I have done this edit to editor.js it works but I am not sure if it's secure!!!
Original code
My fix
Can this somehow mess my forum?????
Original code
// Determine the overall height and width - messy, but works
w = oldTextarea.getDimensions().width+"px";
if(!w || parseInt(w) < 400)
{
w = "400px";
My fix
// Determine the overall height and width - messy, but works
w = oldTextarea.getDimensions().width+"px";
if(!w || parseInt(w) < 550)
{
w = "550px";
Can this somehow mess my forum?????