I've got an MVC application that works fine on IE and Chrome but fails to call Ext application launch on Firefox. The application is declared as:
Ext.application({
name: 'uoozo.piko',
appFolder: '/piko/desktop',
controllers: [
'AppController',
'ImageController',
'HistogramController',
'EffectsController',
'EffectEditController',
'SocialController',
'PicturesController'
],
launch: function()
{
Ext.create('Ext.container.Viewport', {
layout: 'fit',
items: {
xtype: "AppView"
}
});
}
});
When I try loading this application in Firefox, my controllers and their associated views load but launch is not called. If I comment out the controllers then the application launches fine. I don't understand what the problem is? Also, why does this inconsistency exist between firefox and other browsers?
Thanks