Commit 72135857b03ab0792e2a0c58e78805ce5fbfe8a4
Exists in
master
and in
10 other branches
fixing conflit
Showing
3 changed files
with
14 additions
and
3 deletions
Show diff stats
js/main.js
@@ -132,8 +132,15 @@ $.getJSON(noosferoAPI) | @@ -132,8 +132,15 @@ $.getJSON(noosferoAPI) | ||
132 | $( "#search-input" ).autocomplete({ | 132 | $( "#search-input" ).autocomplete({ |
133 | source: availableTags, | 133 | source: availableTags, |
134 | minLength: 3, | 134 | minLength: 3, |
135 | - select: function( event, ui ) { display_proposal(ui.item['value' ].replace('#','')); }, | ||
136 | - appendTo: '#search-input-container' | 135 | + select: function( event, ui ) { |
136 | + updateHash(ui.item.value); | ||
137 | + return false; | ||
138 | + }, | ||
139 | + appendTo: '#search-input-container', | ||
140 | + messages: { | ||
141 | + noResults: '', | ||
142 | + results: function() {} | ||
143 | + } | ||
137 | }); | 144 | }); |
138 | 145 | ||
139 | 146 |
sass/_proposal_categories.scss
sass/style.scss
@@ -127,4 +127,8 @@ form { | @@ -127,4 +127,8 @@ form { | ||
127 | color: #333; | 127 | color: #333; |
128 | background-color: #fff; | 128 | background-color: #fff; |
129 | border-color: #ccc; | 129 | border-color: #ccc; |
130 | +} | ||
131 | + | ||
132 | +.ui-helper-hidden-accessible{ | ||
133 | + display: none; | ||
130 | } | 134 | } |
131 | \ No newline at end of file | 135 | \ No newline at end of file |