trim newlines from titles, MKWS-290
authorWolfram Schneider <wosch@indexdata.dk>
Wed, 15 Oct 2014 12:47:15 +0000 (14:47 +0200)
committerWolfram Schneider <wosch@indexdata.dk>
Wed, 15 Oct 2014 12:47:15 +0000 (14:47 +0200)
I guess the newlines comes from the new template framework, otherwise
we would see this noisy log output earlier.

test/spec/mkws-pazpar2.js

index 2f5b5ab..fe0e345 100644 (file)
@@ -676,7 +676,7 @@ describe("Check SortBy options", function () {
             var list = [];
             var terms = $("div.mkwsRecords > div.mkwsSummary > a");
             for (var i = 0; i < terms.length; i++) {
-                var term = $(terms[i]).text();
+                var term = $(terms[i]).text().trim();
                 list.push(term);
                 // debug(prefix + "title: " + term);
             }