app.js 366 B

12345678910111213141516171819
  1. Ext.application({
  2. name: 'KitchenSink',
  3. autoCreateViewport: true,
  4. requires: [
  5. 'Ext.window.MessageBox'
  6. ],
  7. controllers: [
  8. 'Main'
  9. ],
  10. launch: function(){
  11. if (!Ext.isWebKit) {
  12. Ext.MessageBox.alert('WebKit Only', 'This example is currently only supported in WebKit browsers');
  13. }
  14. }
  15. });