tsylvai
Junior Member
Posts: 3
Registered: 4/16/2006
Location: Paris , France
Member Is Offline
|
| posted on 4/16/2006 at 11:59 PM |
|
|
i detect a little bug in the validator code,
In line 209 in the JS CODE ,
replace
alert(s_alert_message);
by
this.f_alert(s_alert_message);
will soluce the pb .
and then the config "alert : true" ou "alert : false" is used.
(sorry for my english !!!)
|
|
|
tsylvai
Junior Member
Posts: 3
Registered: 4/16/2006
Location: Paris , France
Member Is Offline
|
| posted on 4/17/2006 at 12:14 AM |
|
|
other modification needed,
If you correct this little pb ,
and you turn off the alert , the validate-config alert is turn off too
>>>
Modify line 93 & 96 - replace :
return this.f_alert(
by
return alert(
|
|
|