fixed bug with null callback

This commit is contained in:
Mike 2012-04-09 17:11:26 -04:00
parent c3a7894788
commit 5d989021a5

View File

@ -230,7 +230,8 @@
else
{
this.__completed = true;
return success(txself);
if(success)
return success(txself);
}
};
//}