From: Mike Taylor Date: Tue, 22 Apr 2014 13:10:42 +0000 (+0100) Subject: Add team.limitCategory function -- currently does nothing but logging. X-Git-Tag: 1.0.0~903 X-Git-Url: http://git.indexdata.com/cgi-bin?a=commitdiff_plain;h=f998a74091bd70de8f31d09dc180865e4e0e5b01;p=mkws-moved-to-github.git Add team.limitCategory function -- currently does nothing but logging. --- diff --git a/src/mkws-team.js b/src/mkws-team.js index b9d899b..74ec42d 100644 --- a/src/mkws-team.js +++ b/src/mkws-team.js @@ -5,8 +5,8 @@ // Some functions are visible as member-functions to be called from // outside code -- specifically, from generated HTML. These functions // are that.switchView(), showDetails(), limitTarget(), limitQuery(), -// delimitTarget(), delimitQuery(), showPage(), pagerPrev(), -// pagerNext(). +// limitCategory(), delimitTarget(), delimitQuery(), showPage(), +// pagerPrev(), pagerNext(). // function team($, teamName) { var that = {}; @@ -189,6 +189,14 @@ function team($, teamName) { }; + that.limitCategory = function(id) { + log("limitCategory(id=" + id + ")"); + m_filters.push({ id: id }); + //triggerSearch(); + return false; + }; + + that.delimitTarget = function(id) { log("delimitTarget(id=" + id + ")"); removeMatchingFilters(function(f) { return f.id });