Advertisement
Guest User

viewport

a guest
Apr 2nd, 2012
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. Ext.define('MyApp.view.Viewport', {
  2. extend: 'Ext.TabPanel',
  3.  
  4. config:{
  5. fullscreen: true,
  6. tabBarPosition: 'bottom',
  7.  
  8. items: [
  9. {
  10. xtype: 'homepanel'
  11. },
  12. {
  13. xtype: 'contactPage'
  14. },
  15. {
  16. xtype: 'productsPage'
  17. },
  18. {
  19. xtype: 'formsPage'
  20. }
  21. ]
  22. }
  23. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement