Skip to content

Instantly share code, notes, and snippets.

@manduks
Created June 29, 2012 15:15
Show Gist options
  • Save manduks/3018523 to your computer and use it in GitHub Desktop.
Save manduks/3018523 to your computer and use it in GitHub Desktop.
/**
* This is the main code for the application
*/
Ext.Loader.setConfig({
enabled:true
});
Ext.application({
name: 'App',
requires:['App.view.GridPanel'],
//stores:[],
launch: function() {
Ext.create('Ext.Window',{
width:450,
height:310,
maximizable:true,
title:'Buscaminas',
autoScroll:true,
frame:false,
layout:'fit',
items:[{
xtype:'minegrid'
}]
}).show();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment