Skip to content

Commit

Permalink
Removed the method parameter from autoLoad url - it wasn't used anyway
Browse files Browse the repository at this point in the history
  • Loading branch information
padcom committed Mar 4, 2011
1 parent 924ca6d commit e2d9f85
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion web-app/ext-desktop/EmbeddedModule.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
Ext.ns("Ext.app");

Ext.app.EmbeddedModule = Ext.extend(Ext.app.Module, {
init : function(){
this.launcher = {
Expand All @@ -19,7 +21,7 @@ Ext.app.EmbeddedModule = Ext.extend(Ext.app.Module, {
iconCls: this.iconCls,
width:this.width,
height:this.height,
autoLoad: { url: this.url, scripts: true, params: { parentId: this.id }, method: 'GET' },
autoLoad: { url: this.url, scripts: true, params: { parentId: this.id } },
shim:false,
animCollapse:true,
constrainHeader:true
Expand Down

0 comments on commit e2d9f85

Please sign in to comment.