X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=mkdru.theme.js;h=229c482dd6c7870c8f68582a3fbb24ea63dcce5b;hb=9af415332645247f224d98148691d6b6ece99f60;hp=bcf9de9040c995f1e5b62c3cba0f5607ef7f89b2;hpb=2114cf859f1f8471b148739f7cd930cadc4cc8c4;p=mkdru-moved-to-drupal.org.git diff --git a/mkdru.theme.js b/mkdru.theme.js index bcf9de9..229c482 100644 --- a/mkdru.theme.js +++ b/mkdru.theme.js @@ -101,8 +101,11 @@ Drupal.theme.prototype.mkdruPager = function (pages, start, current, total, prev }; Drupal.theme.prototype.mkdruCounts = function(first, last, available, total) { - return first + Drupal.t(' to ') + last + Drupal.t(' of ') + available + if (last > 0) + return first + Drupal.t(' to ') + last + Drupal.t(' of ') + available + Drupal.t(' available (') + total + Drupal.t(' found)'); + else + return Drupal.t('No results'); }; Drupal.theme.prototype.mkdruStatus = function(activeClients, clients) { @@ -110,21 +113,34 @@ Drupal.theme.prototype.mkdruStatus = function(activeClients, clients) { + clients + Drupal.t(' targets'); }; -Drupal.theme.prototype.mkdruFacet = function (terms, facet, max) { +Drupal.theme.prototype.mkdruFacet = function (terms, facet, max, selections) { var html = ""; for (var i = 0; i < terms.length && i < max; i++ ) { var term = terms[i]; - html += '
'; - + } + if (terms.length == 0 && selections && selections.length) { + for (var i=0; i'+name+'
(0)
'; + } + } } return html; }; -Drupal.theme.prototype.mkdruFacetContainer = function (facets, facetCfg) { +Drupal.theme.prototype.mkdruFacetContainer = function (facetsCfg) { return ""; };