Commit 7653601ceea724835d96b9bb0a2a514d1a05868c

Authored by Fabio Teixeira
Committed by Luciano Prestes
1 parent c764e380

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,12 +119,12 @@ modulejs.define('SearchSoftwareCatalog', ['jquery', 'NoosferoRoot', 'SoftwareCat
119 119
120 120
121 function update_page_by_ajax_on_select_change() { 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 function update_page_by_text_filter() { 125 function update_page_by_text_filter() {
126 var text = this.value; 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