Hi,
I am writing a CMS that uses ajile to manage the javascript.
All works fine in Firefox but when using Ajile on IE 7 it does not
work.
I can't access any of the objects/functions imported with the Import
()
function. I can access the objects by using the full namespace
notation
but not the short name. See below example.
Namespace("biz.toucan");
Import("biz.toucan.otherFunction");
biz.toucan.test = new function()
{
otherFunction(); // DOES NOT WORK IN IE 7 (GET UNDEFINED MSG)
biz.toucan.otherFunction(); // DOES WORK IN IE 7
}
Import("biz.toucan.test");
----
Also I tested your exmaples on your site and the load and import tests
also fail in IE. I need IE support otherwise I will have to limit the
CMS back office to firefox only.
Look forward to hearing from you.
Great script by the way, works great in firefox.
Cameron Cooke.