diff options
author | Adam Tauber <asciimoo@gmail.com> | 2015-04-26 18:57:03 +0200 |
---|---|---|
committer | Adam Tauber <asciimoo@gmail.com> | 2015-04-26 18:57:03 +0200 |
commit | ff68546c69b68c4f83eb843f3ecb5789358d2f32 (patch) | |
tree | 424573dc20e0b71be7c989c00cd53c32daa11b28 | |
parent | 39f0cd94ee2b96a6fc5818846d0ceaffc99f0b25 (diff) | |
download | searxng-ff68546c69b68c4f83eb843f3ecb5789358d2f32.tar.gz searxng-ff68546c69b68c4f83eb843f3ecb5789358d2f32.zip |
[mod] enable category select plugin by default
-rw-r--r-- | searx/plugins/search_on_category_select.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/searx/plugins/search_on_category_select.py b/searx/plugins/search_on_category_select.py index 7d124cc45..d4b725acf 100644 --- a/searx/plugins/search_on_category_select.py +++ b/searx/plugins/search_on_category_select.py @@ -15,8 +15,8 @@ along with searx. If not, see < http://www.gnu.org/licenses/ >. (C) 2015 by Adam Tauber, <asciimoo@gmail.com> ''' from flask.ext.babel import gettext -name = 'Search on category select' -description = gettext('Perform search immediately if a category selected') -default_on = False +name = gettext('Search on category select') +description = gettext('Perform search immediately if a category selected. Disable to select multiple categories.') +default_on = True js_dependencies = ('js/search_on_category_select.js',) |