diff -r 928583c82325 -r f0dc53d8b462 integration/v2/js/keyword-mosaic.js --- a/integration/v2/js/keyword-mosaic.js Thu Jun 27 16:17:44 2013 +0200 +++ b/integration/v2/js/keyword-mosaic.js Thu Jun 27 16:29:10 2013 +0200 @@ -63,11 +63,11 @@ keywordslist.slice(0,100).forEach(function(kw) { var li = $('
  • '), - outera = $(''), - innera = $(''); - outera.text(kw.keyword + ' '); - outera.append(innera); - li.append(outera); + texta = $(''), + actiona = $(''); + texta.text(kw.keyword + ' '); + li.append(actiona); + li.append(texta); kw.li = li; li.click(function() { if (kw.enabled) { @@ -83,7 +83,7 @@ updateKeywords(); return false; }); - innera.click(function() { + actiona.click(function() { kw.enabled = !kw.enabled; updateKeywords(); return false;