Html Editor do not work

Re: Vast: Re: Vast: Re: Vast: Re: Vast: Html Editor do not work

by Monika Sawicka -
Number of replies: 0

Hi Laura,

instead of refreshing the web page, you can change the width and height in HTMLArea.Config = function () function (line 107). Some versions of IE don´t accept "auto".

--------------------------------------

before: (line: 107-117)  of htmlarea.php

HTMLArea.Config = function () {
this.version = "3.0";

this.width = "auto";
this.height = "auto";

// enable creation of a status bar?
this.statusBar = true;

// maximum size of the undo queue
this.undoSteps = 20;

.....

after

HTMLArea.Config = function () {
this.version = "3.0";

this.width = 620;
this.height = 250;

// enable creation of a status bar?
this.statusBar = true;

// maximum size of the undo queue
this.undoSteps = 20;

I hope ot will help.

Best regards