Commit 0c6254eaaf39ce24678c82b7f20da7b4c70fe051

Authored by Leonardo Merlin
1 parent a99b329e

Fix search result ref pointer

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
js/main.js
... ... @@ -126,7 +126,7 @@ $.getJSON(noosferoAPI)
126 126  
127 127 var availableTags = [ ];
128 128 $('#proposal-group li a').each(function(){
129   - availableTags.push({ label: $(this).text(), value: $(this).attr('href')});
  129 + availableTags.push({ label: $(this).text(), value: $(this).data('target')});
130 130 });
131 131  
132 132 $( "#search-input" ).autocomplete({
... ...