X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=mkdru.theme.js;h=13886d97bb9fca7e984ee2b84c63dd7db081e104;hb=89e003ff9d625d434b6bc80afdbacfe3352e118c;hp=09226c128958280956aa9cf4b2c1447fbe7d3b52;hpb=7126e0764b58694e9da39a63c4960c70116a011e;p=mkdru-moved-to-drupal.org.git diff --git a/mkdru.theme.js b/mkdru.theme.js index 09226c1..13886d9 100644 --- a/mkdru.theme.js +++ b/mkdru.theme.js @@ -110,7 +110,7 @@ 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]; @@ -122,18 +122,18 @@ Drupal.theme.prototype.mkdruFacet = function (terms, facet, max) { + ')
'; } //TODO, meed to look up target name from ID - var sel = selections[facet]; - if (terms.length == 0 && sel && sel.length) { - for (var i=0; i'+sel[i]+' (0)
'; + if (terms.length == 0 && selections && selections.length) { + for (var i=0; i'+selections[i]+' (0)
'; } } } return html; }; -Drupal.theme.prototype.mkdruFacetContainer = function (facets, facetCfg) { +Drupal.theme.prototype.mkdruFacetContainer = function (facetCfg) { return ""; };