Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.2.2
-
None
-
None
Description
The problem is here:
function oamSubmitForm(formName, linkId, target, params)
{
/....................../
if((typeof target=='function') && target != null)
maybe we should do this instead
if( target != null)
or maybe
if(typeof target!='undefined')
I will take a look to see what is better