X-Git-Url: http://git.roojs.org/?p=roojs1;a=blobdiff_plain;f=roojs-bootstrap-debug.js;h=c5e35d3fe01d2e9399a7d679416056257658912b;hp=ff7d054e3376adf0d8726ab52c2158e5569dbcbc;hb=bb4f20285cb0ce281099e1db5cb76e60175de50f;hpb=73f7b5a9f21e91afcf1a6ce56a0a5140310de826 diff --git a/roojs-bootstrap-debug.js b/roojs-bootstrap-debug.js index ff7d054e33..c5e35d3fe0 100644 --- a/roojs-bootstrap-debug.js +++ b/roojs-bootstrap-debug.js @@ -16092,9 +16092,10 @@ Roo.extend(Roo.data.DataProxy, Roo.util.Observable); * @constructor * @param {Object} config A config object containing the objects needed for the Store to access data, */ -Roo.data.MemoryProxy = function(data){ - if (typeof(data) != 'undefined' && typeof(data.data) != 'undefined') { - data = data.data; +Roo.data.MemoryProxy = function(config){ + var data = config; + if (typeof(config) != 'undefined' && typeof(config.data) != 'undefined') { + data = config.data; } Roo.data.MemoryProxy.superclass.constructor.call(this); this.data = data;