From 62308e996564352b637f340d286ea1616f903cd3 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Mon, 9 Jun 2014 15:27:59 +0100 Subject: [PATCH] Get rid of Mindmap and Suggested Resources panes (both unimplemented) --- examples/htdocs/mkws-widget-credo-bs.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/examples/htdocs/mkws-widget-credo-bs.js b/examples/htdocs/mkws-widget-credo-bs.js index 7c143c1..893ceef 100644 --- a/examples/htdocs/mkws-widget-credo-bs.js +++ b/examples/htdocs/mkws-widget-credo-bs.js @@ -47,8 +47,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(section('news col-md-4 col-sm-6', 'News', this.subwidget('Records', { _team: 'news', targetfilter: 'categories=news' }))); - s.push(section('resources col-md-4 col-sm-6', 'Suggested Resources', - "### Not yet implemented")); s.push(''); this.node.html(s.join('')); @@ -111,8 +107,3 @@ mkws.registerWidgetType('Credo', function() { return s.join(''); } }); - - -mkws.registerWidgetType('Mindmap', function() { - this.node.html("### We do not yet have a Mindmap widget"); -}); -- 1.7.10.4