Commit 7653601ceea724835d96b9bb0a2a514d1a05868c
Committed by
Luciano Prestes
1 parent
c764e380
Exists in
master
and in
5 other branches
Fix bug of showing loading message on user typing
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
public/views/search-software-catalog.js
... | ... | @@ -119,12 +119,12 @@ modulejs.define('SearchSoftwareCatalog', ['jquery', 'NoosferoRoot', 'SoftwareCat |
119 | 119 | |
120 | 120 | |
121 | 121 | function update_page_by_ajax_on_select_change() { |
122 | - dispatch_search_ajax(update_search_page_on_ajax, true); | |
122 | + dispatch_search_ajax(true); | |
123 | 123 | } |
124 | 124 | |
125 | 125 | function update_page_by_text_filter() { |
126 | 126 | var text = this.value; |
127 | - dispatch_search_ajax(update_search_page_on_ajax, false); | |
127 | + dispatch_search_ajax(false); | |
128 | 128 | } |
129 | 129 | |
130 | 130 | ... | ... |