Guest User

Untitled

a guest
Jul 19th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. Ext.setup({
  2. tabletStartupScreen: 'tablet_startup.png',
  3. phoneStartupScreen: 'phone_startup.png',
  4. icon: 'icon.png',
  5. glossOnIcon: false,
  6. onReady: function(){
  7. var picker = new Ext.Picker({
  8. slots: [{
  9. name: 'limit_speed',
  10. title: 'Speed',
  11. data: [{
  12. text: '100 KB/s',
  13. value: 100
  14. }, {
  15. text: '200 KB/s',
  16. value: 200
  17. }]
  18. }]
  19. });
  20. picker.show();
  21. }
  22. });
Add Comment
Please, Sign In to add comment