Guest User

Untitled

a guest
Jul 21st, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 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. xclass: 'MyApp.view.Home'
  11. },
  12. {
  13. xclass: 'MyApp.view.Contact'
  14. },
  15. {
  16. xclass: 'MyApp.view.Products'
  17. },
  18. {
  19. xclass: 'MyApp.view.Forms'
  20. }
  21. ]
  22. }
  23. });
Add Comment
Please, Sign In to add comment