From: Mike Taylor Date: Mon, 9 Jun 2014 14:29:59 +0000 (+0100) Subject: Get rid of Mindmap and Suggested Resources panes (both unimplemented) X-Git-Tag: 1.0.0~523 X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=commitdiff_plain;h=4fd5d3981045a546f3f6c4bd17a54a6e530d122d Get rid of Mindmap and Suggested Resources panes (both unimplemented) --- diff --git a/examples/htdocs/mkws-widget-credo.js b/examples/htdocs/mkws-widget-credo.js index 59a9a13..8d9a0b0 100644 --- a/examples/htdocs/mkws-widget-credo.js +++ b/examples/htdocs/mkws-widget-credo.js @@ -51,8 +51,6 @@ mkws.registerWidgetType('Credo', function() { s.push(''); s.push(''); - 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' }))); s.push(''); @@ -69,8 +67,6 @@ mkws.registerWidgetType('Credo', function() { this.subwidget('Records', { _team: 'books', targetfilter: 'categories=books' }))); s.push(sectionRow('news', 'News', this.subwidget('Records', { _team: 'news', targetfilter: 'categories=news' }))); - s.push(sectionRow('resources', 'Suggested Resources', - "### Not yet implemented")); s.push(''); @@ -112,8 +108,3 @@ mkws.registerWidgetType('Credo', function() { return s.join(''); } }); - - -mkws.registerWidgetType('Mindmap', function() { - this.node.html("### We do not yet have a Mindmap widget"); -});