X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-team.js;h=e1e985b367e93513785dbda7a5d72fcd63df4016;hb=72107f57026d4a677d328b000fad3b89b3c17351;hp=895afed562f4808b477398343fe78bbdba8e788b;hpb=69034405306d2b1193b6da473b38eb17969ee0a6;p=mkws-moved-to-github.git diff --git a/src/mkws-team.js b/src/mkws-team.js index 895afed..e1e985b 100644 --- a/src/mkws-team.js +++ b/src/mkws-team.js @@ -250,7 +250,7 @@ function team($, teamName) { that.resetPage = resetPage; - function newSearch(query, sortOrder, perpage, limit, targets, torusquery) { + function newSearch(query, sortOrder, maxrecs, perpage, limit, targets, torusquery) { log("newSearch: " + query); if (m_config.use_service_proxy && !mkws.authenticated) { @@ -259,14 +259,14 @@ function team($, teamName) { } m_filters = [] - triggerSearch(query, sortOrder, perpage, limit, targets, torusquery); + triggerSearch(query, sortOrder, maxrecs, perpage, limit, targets, torusquery); switchView('records'); // In case it's configured to start off as hidden m_submitted = true; } that.newSearch = newSearch; - function triggerSearch(query, sortOrder, perpage, limit, targets, torusquery) { + function triggerSearch(query, sortOrder, maxrecs, perpage, limit, targets, torusquery) { resetPage(); queue("navi").publish(); @@ -309,6 +309,9 @@ function team($, teamName) { if (pp2limit) { params.limit = pp2limit; } + if (maxrecs) { + params.maxrecs = maxrecs; + } if (torusquery) { if (!mkws.config.use_service_proxy) alert("can't narrow search by torusquery when Service Proxy is not in use"); @@ -597,6 +600,7 @@ function team($, teamName) { //log('findnode(' + selector + ') found ' + node.length + ' nodes'); return node; } + that.findnode = findnode; function renderDetails(data, marker) { @@ -705,6 +709,15 @@ function team($, teamName) { {{md-title-responsibility}}\ {{/if}}\ '; + } else if (name === "Image") { + return '\ + \ + {{#first md-thumburl}}\ + {{../md-title}}\ + {{/first}}\ +
\ +
\ +'; } var s = "There is no default '" + name +"' template!";