check translations, part facets filter/navi, MKWS-365
authorWolfram Schneider <wosch@indexdata.dk>
Wed, 28 Jan 2015 13:53:24 +0000 (13:53 +0000)
committerWolfram Schneider <wosch@indexdata.dk>
Wed, 28 Jan 2015 13:53:24 +0000 (13:53 +0000)
src/templates/navi.handlebars
test/spec/mkws-pazpar2.js

index 5139fd7..fd56157 100644 (file)
@@ -7,7 +7,7 @@ filters
   click - handler script to remove limit
 }}
 {{#each filters}}
-  {{{mkws-translate facet}}}: <a class="mkws-removable mkwsRemovable" href="#" onclick="{{{click}}}">{{value}}</a>
+  <span>{{{mkws-translate facet}}}</span>: <a class="mkws-removable mkwsRemovable" href="#" onclick="{{{click}}}">{{value}}</a>
   {{#unless @last}}|{{/unless}}
 {{/each}}
 
index e24a1bd..bd60454 100644 (file)
@@ -819,7 +819,7 @@ describe("Check translations", function () {
         }
     });
 
-    xit("facets", function () {
+    xit("facets sidebar", function () {
         var list = $(".mkws-facet-title");
 
         expect(list.length).toBe(3);
@@ -829,6 +829,15 @@ describe("Check translations", function () {
         expect($(list[2]).text()).toBe(M("Authors"));
     });
 
+    it("facets navigation", function () {
+        var list = $(".mkws-navi > span");
+
+        expect(list.length).toBe(2);
+
+        expect($(list[0]).text()).toBe(M("source"));
+        expect($(list[1]).text()).toBe(M("author"));
+    });
+
     it("navigation", function () {
         var list = $(".mkws-pager-desc > span");