X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=examples%2Fhtdocs%2Fmkws-widget-credo.js;fp=examples%2Fhtdocs%2Fmkws-widget-credo.js;h=342a1e057f9f8a4bd050ea6cb85fa9390393e60b;hb=9ecb76942ddb11cfa2ffef7aed2de74ad0055065;hp=90ac5f9b5bcfc8b79f101fa56d77866ae1ae6331;hpb=404fc88a82967955076b37bd8f749789cc64363e;p=mkws-moved-to-github.git diff --git a/examples/htdocs/mkws-widget-credo.js b/examples/htdocs/mkws-widget-credo.js index 90ac5f9..342a1e0 100644 --- a/examples/htdocs/mkws-widget-credo.js +++ b/examples/htdocs/mkws-widget-credo.js @@ -43,7 +43,7 @@ mkws.registerWidgetType('Credo', function() { s.push(''); s.push(''); - s.push(section('encyclopaedia', 'Topic Page: ### title', + s.push(section('encyclopaedia', 'Topic Page: ', this.subwidget('Reference', { _team: 'ref' }))); // The Images widget needs to be in our team so we can set its template s.push(section('image', 'Images', @@ -51,7 +51,7 @@ mkws.registerWidgetType('Credo', function() { s.push(''); s.push(''); - s.push(section('mindmap', 'Create a Mind Map for ### title', + s.push(section('mindmap', 'Create a Mind Map for ', this.subwidget('Mindmap', { _team: 'main', facet: 'subject' }))); s.push(section('topics', 'Related Topics', this.subwidget('Facet', { _team: 'main', facet: 'subject' }))); @@ -76,6 +76,14 @@ mkws.registerWidgetType('Credo', function() { this.node.html(s.join('')); + // Fill in the titles from the query once widgets have all been prepared + var that = this; + this.team.queue("ready").subscribe(function() { + var query = that.config.query; + that.log("got query '" + query + "' from team config"); + mkws.$('.x-mkws-title').html(query); + }); + function section(xclass, title, content) { var s = [];