From: Mike Taylor Date: Tue, 10 Jun 2014 11:56:43 +0000 (+0100) Subject: mkws.limitTarget invocations use data[i].id directly, rather than by X-Git-Tag: 1.0.0~506 X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=commitdiff_plain;h=0cb026f761fa9a0d142d44d70af9902ba19b9a17 mkws.limitTarget invocations use data[i].id directly, rather than by click-time reference to this.getAttribute('target_id') --- diff --git a/src/mkws-widget-termlists.js b/src/mkws-widget-termlists.js index 1f13820..4a83727 100644 --- a/src/mkws-widget-termlists.js +++ b/src/mkws-widget-termlists.js @@ -55,7 +55,7 @@ mkws.registerWidgetType('Facet', function() { // Special case: target selection acc.push('target_id='+data[i].id+' '); if (!that.team.targetFiltered(data[i].id)) { - action = 'mkws.limitTarget(\'' + teamName + '\', this.getAttribute(\'target_id\'),this.firstChild.nodeValue)'; + action = 'mkws.limitTarget(\'' + teamName + '\', \'' + data[i].id + '\', this.firstChild.nodeValue)'; } } else { action = 'mkws.limitQuery(\'' + teamName + '\', \'' + pzIndex + '\', this.firstChild.nodeValue)';