Advertisement
Guest User

Home.js

a guest
Apr 5th, 2012
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. Ext.define('MyApp.view.Home', {
  2. extend: 'Ext.Panel',
  3. xtype: 'homepanel',
  4. config: {
  5. title: 'Home',
  6. iconCls: 'home',
  7. cls: 'home',
  8. html: [
  9. '<h1>Home Page</h1><br/><br/>',
  10. '<img src="http://www.maalguru.in/wp-content/uploads/2012/02/MaalGuru-logo-free.png"/>',
  11. ].join("")
  12. }
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement