From 43c3d6b31556e4f1636f126a00e1d6ed26c0778c Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Mon, 9 Jun 2014 15:31:16 +0100 Subject: [PATCH] Swap position of News and All Targets --- examples/htdocs/mkws-widget-credo-bs.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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('')); -- 1.7.10.4