From 3e57a242f77c1f506a3437458a459e1c3307372b Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Tue, 18 Jun 2013 16:57:00 +0100 Subject: [PATCH] Remove stupid text-decoration --- experiments/spclient/mkws.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/experiments/spclient/mkws.js b/experiments/spclient/mkws.js index 0f7eba8..f100793 100644 --- a/experiments/spclient/mkws.js +++ b/experiments/spclient/mkws.js @@ -85,20 +85,20 @@ function my_onstat(data) { function my_onterm(data) { var termlists = []; - termlists.push('
TERMLISTS:
.::Sources
'); + termlists.push('
TERMLISTS:
Sources
'); for (var i = 0; i < data.xtargets.length && i < SourceMax; i++ ) { termlists.push('' + data.xtargets[i].name + ' (' + data.xtargets[i].freq + ')
'); } - termlists.push('
.::Subjects
'); + termlists.push('
Subjects
'); for (var i = 0; i < data.subject.length && i < SubjectMax; i++ ) { termlists.push('' + data.subject[i].name + ' (' + data.subject[i].freq + ')
'); } - termlists.push('
.::Authors
'); + termlists.push('
Authors
'); for (var i = 0; i < data.author.length && i < AuthorMax; i++ ) { termlists.push('' + data.author[i].name -- 1.7.10.4