From: Mike Taylor Date: Mon, 9 Jun 2014 14:31:16 +0000 (+0100) Subject: Swap position of News and All Targets X-Git-Tag: 1.0.0~520 X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=commitdiff_plain;h=43c3d6b31556e4f1636f126a00e1d6ed26c0778c Swap position of News and All Targets --- diff --git a/examples/htdocs/mkws-widget-credo-bs.js b/examples/htdocs/mkws-widget-credo-bs.js index 5847f16..d3f363e 100644 --- a/examples/htdocs/mkws-widget-credo-bs.js +++ b/examples/htdocs/mkws-widget-credo-bs.js @@ -59,14 +59,14 @@ mkws.registerWidgetType('Credo', function() { s.push('
'); - s.push(section('entries clearfix col-md-4 col-sm-6', 'Results from all targets', - this.subwidget('Records', { _team: 'main' }))); + s.push(section('entries clearfix col-md-4 col-sm-6', 'News', + this.subwidget('Records', { _team: 'news', targetfilter: 'categories=news' }))); s.push(section('articles clearfix col-md-4 col-sm-6', 'Articles', this.subwidget('Records', { _team: 'articles', targetfilter: 'categories=articles' }))); s.push(section('books clearfix col-md-4 col-sm-6', 'Books', 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('news col-md-4 col-sm-6', 'Results from all targets', + this.subwidget('Records', { _team: 'main' }))); s.push('
'); this.node.html(s.join(''));