From: Mike Taylor Date: Wed, 7 May 2014 12:21:56 +0000 (+0100) Subject: Re-indent. X-Git-Tag: 1.0.0~725 X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=commitdiff_plain;h=9e0352370a83b35286d31ef38f223e15cb25447f Re-indent. --- diff --git a/src/mkws-widget-termlists.js b/src/mkws-widget-termlists.js index 3ea68f5..db679b9 100644 --- a/src/mkws-widget-termlists.js +++ b/src/mkws-widget-termlists.js @@ -1,68 +1,68 @@ mkws.registerWidgetType('Termlists', function() { - var that = this; + var that = this; - // Initially hide the termlists; display when we get results - $(document).ready(function() { - $(that.node).hide(); - }); - this.team.queue("termlists").subscribe(function(data) { - $(that.node).show(); - }); + // Initially hide the termlists; display when we get results + $(document).ready(function() { + $(that.node).hide(); + }); + this.team.queue("termlists").subscribe(function(data) { + $(that.node).show(); + }); - var acc = []; - var facets = this.config.facets; - acc.push('
' + mkws.M('Termlists') + '
'); - for (var i = 0; i < facets.length; i++) { - acc.push('
', '
'); - } - $(this.node).html(acc.join('')); + var acc = []; + var facets = this.config.facets; + acc.push('
' + mkws.M('Termlists') + '
'); + for (var i = 0; i < facets.length; i++) { + acc.push('
', '
'); + } + $(this.node).html(acc.join('')); - widget.autosearch(this); + widget.autosearch(this); }); mkws.registerWidgetType('Facet', function() { - var facetConfig = { - xtargets: [ "Sources", 16, false ], - subject: [ "Subjects", 10, true ], - author: [ "Authors", 10, true ] - } + var facetConfig = { + xtargets: [ "Sources", 16, false ], + subject: [ "Subjects", 10, true ], + author: [ "Authors", 10, true ] + } - var that = this; - var name = that.config.facet; - var ref = facetConfig[name] || alert("no facet definition for '" + name + "'"); - var caption = ref[0]; - var max = ref[1]; - var pzIndex = ref[2] ? name : null; + var that = this; + var name = that.config.facet; + var ref = facetConfig[name] || alert("no facet definition for '" + name + "'"); + var caption = ref[0]; + var max = ref[1]; + var pzIndex = ref[2] ? name : null; - that.toString = function() { - return '[Widget ' + that.team.name() + ':' + that.type + '(' + name + ')]'; - }; + that.toString = function() { + return '[Widget ' + that.team.name() + ':' + that.type + '(' + name + ')]'; + }; - that.team.queue("termlists").subscribe(function(data) { - data = data[name]; + that.team.queue("termlists").subscribe(function(data) { + data = data[name]; - var teamName = that.team.name(); - var acc = []; - acc.push('
' + mkws.M(caption) + '
'); - for (var i = 0; i < data.length && i < max; i++) { - acc.push('
'); - acc.push('' + data[i].name + '' - + ' ' + data[i].freq + ''); - acc.push('
'); + var teamName = that.team.name(); + var acc = []; + acc.push('
' + mkws.M(caption) + '
'); + for (var i = 0; i < data.length && i < max; i++) { + acc.push('
'); + acc.push('' + data[i].name + '' + + ' ' + data[i].freq + ''); + acc.push('
'); + } - $(that.node).html(acc.join('')); - }); + $(that.node).html(acc.join('')); + }); });