FIX: Use site settings for min_search_term_length.
This commit is contained in:
parent
e82f892c2d
commit
9a3f7a1e44
|
@ -5,7 +5,7 @@ export default Ember.View.extend({
|
||||||
templateName: 'search',
|
templateName: 'search',
|
||||||
keyDown: function(e){
|
keyDown: function(e){
|
||||||
var term = this.get('controller.term');
|
var term = this.get('controller.term');
|
||||||
if (e.which === 13 && term && term.length > 2) {
|
if (e.which === 13 && term && term.length >= Discourse.SiteSettings.min_search_term_length) {
|
||||||
this.get('controller').send('fullSearch');
|
this.get('controller').send('fullSearch');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue