I made changes recently to the samples to load MCOs through the XML files and
eval() rather than including them in the surrounding HTML file. However there
is one caveat here I forgot to mention. There is a different between doing:
function MyClass(){}
and
MyClass = function(){}
In InternetExplorer only the second one works, the first one has some scoping
issues and after the eval call the MyClass class will not be defined.
I am changing the samples to reflect this, I neglected to do that when I first
made the change.
James Margaris