manifest.js 279 B

1234567891011121314
  1. Ext.onReady(function() {
  2. Ext.manifest = {
  3. widgets: [
  4. {
  5. xtype: 'widget.panel',
  6. ui: 'bubble'
  7. },
  8. {
  9. xtype: 'widget.header',
  10. ui: 'bubble'
  11. }
  12. ]
  13. };
  14. });