I'm looking at flowplayer.core/src/actionscript/org/flowplayer/config/Config.as. In the copyProps function, I see:
"source is Array" is checked twice. I don't think that that second if statement will ever get triggered.
Happy Hacking!
if (source is Number || source is String || source is Array) {
target = source;
return target;
}
if (source is Array) {
"source is Array" is checked twice. I don't think that that second if statement will ever get triggered.
Happy Hacking!