Ext.application({
  name: 'wowPortal',
  appFolder: '.app',
  launch: function() {
  //	Ext.create('Ext.container.Viewport', {
  //            layout: 'fit',
  //            items: [
  //                {
  //                    xtype: 'panel',
  //                    title: 'Users',
  //                    html : 'List of users will go here'
  //                }
  //            ]
  //        });
  }
});

Ext.direct.Manager.on('message', function(e){
  Ext.Msg.alert('Message', e.data);
});

Ext.direct.Manager.on('exception', function(e){
  Ext.Msg.alert(locale.error, e.message);
});

