From 7653601ceea724835d96b9bb0a2a514d1a05868c Mon Sep 17 00:00:00 2001 From: Fabio Teixeira Date: Fri, 6 Mar 2015 10:10:22 -0300 Subject: [PATCH] Fix bug of showing loading message on user typing --- public/views/search-software-catalog.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/views/search-software-catalog.js b/public/views/search-software-catalog.js index 3991915..e7e9b84 100644 --- a/public/views/search-software-catalog.js +++ b/public/views/search-software-catalog.js @@ -119,12 +119,12 @@ modulejs.define('SearchSoftwareCatalog', ['jquery', 'NoosferoRoot', 'SoftwareCat function update_page_by_ajax_on_select_change() { - dispatch_search_ajax(update_search_page_on_ajax, true); + dispatch_search_ajax(true); } function update_page_by_text_filter() { var text = this.value; - dispatch_search_ajax(update_search_page_on_ajax, false); + dispatch_search_ajax(false); } -- libgit2 0.21.2