Skip to content

Commit

Permalink
bug fix - send opts to custom list handler
Browse files Browse the repository at this point in the history
  • Loading branch information
hofmeister committed Nov 10, 2012
1 parent 608fe04 commit ae86416
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/module.js
Expand Up @@ -52,7 +52,7 @@ $wb.Module = new $wb.Class('Module',{
},
listView:function(opts) {
if (this.opts.views.list)
return this.opts.views.list.apply(this);
return this.opts.views.list.apply(this,[opts]);
return new $wb.ui.Table($.extend({
store:this.tableStore(),
fields:this.opts.listFields,
Expand Down

0 comments on commit ae86416

Please sign in to comment.