From fdf6cfa339d898671521da947318051115c82d12 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Thu, 28 Mar 2019 15:04:40 +0800 Subject: [PATCH] docs/Roo.docs.init.js --- docs/Roo.docs.init.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/Roo.docs.init.js b/docs/Roo.docs.init.js index bf0a68661e..5404f4843f 100644 --- a/docs/Roo.docs.init.js +++ b/docs/Roo.docs.init.js @@ -276,7 +276,7 @@ Roo.docs.init = { d.augments = []; d.config = []; // props for ctor? d.isFlutter = true; - this.fillAugments(d, Roo.docs.init.fillDoc); + this.fillAugments(d, d.extends, Roo.docs.init.fillDoc); return; } this.fillDoc(d); @@ -288,15 +288,15 @@ Roo.docs.init = { }); }, - fillAugments : function(d, cb, extends) + fillAugments : function(d, extends, cb ) { if (!extends.length) { cb(d) } - d.augments.push(d.extends); + d.augments.push(extends); var ax = new Roo.data.Connection({}); ax.request({ - url : this.prefix + 'symbols/' + d.extends + '.json', + url : this.prefix + 'symbols/' + extends + '.json', method : 'GET', success : function(res, o) { @@ -321,7 +321,7 @@ Roo.docs.init = { d.events.push(m); }); - this.fillAugments(d,cb,r.extends) + this.fillAugments(d,r.extends, cb) }, scope : this -- 2.39.2