X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=examples%2Fhtdocs%2Fmkws-widget-credo.js;h=c0e6a7813d9f55551d14aab8ea294eba130537be;hb=b522c8fdcb6bebf76a458c251190cbe35621ad5d;hp=34ee2f8491f3d2bf23fa766042bd6e5d6c34a864;hpb=1d9f31bf5248895d592c91b5583ddb8da81a4ff1;p=mkws-moved-to-github.git diff --git a/examples/htdocs/mkws-widget-credo.js b/examples/htdocs/mkws-widget-credo.js index 34ee2f8..c0e6a78 100644 --- a/examples/htdocs/mkws-widget-credo.js +++ b/examples/htdocs/mkws-widget-credo.js @@ -35,15 +35,17 @@ mkws.registerWidgetType('Credo', function() { s.push(''); s.push(section('mindmap', 'Create a Mind Map for ### title', - '### Is there a way to make a mind-map?')); + this.subwidget('Mindmap', { _team: 'main', facet: 'subject' }))); s.push(section('topics', 'Related Topics', - 1 || this.subwidget('Facet', { facet: 'subject' }))); + this.subwidget('Facet', { _team: 'main', facet: 'subject' }))); s.push(''); s.push(''); + s.push('
'); + s.push(sectionRow('entries', 'Credo Entries', - 1 || this.subwidget('Records', { /* ### config */ }))); + this.subwidget('Records', { _team: 'main' }))); s.push(sectionRow('articles', 'Articles', 1 || this.subwidget('Records', { /* ### config */ }))); s.push(sectionRow('books', 'Books', @@ -77,3 +79,8 @@ mkws.registerWidgetType('Credo', function() { return s.join(''); } }); + + +mkws.registerWidgetType('Mindmap', function() { + this.node.html("### We do not yet have a Mindmap widget"); +});