I was going to try in pass in parameters when I create my Enyo app class in the index.html file. I have the following to test it
new MyApps.MainApp("test").renderInto(document.body);
and in the js file
create: function(in)
{
Alert(in);
}
Is there a way to do this?