Commit cfe97d32 authored by James Kirby's avatar James Kirby

Following the coding styles.

parent 7c57b6bc
...@@ -892,9 +892,9 @@ ...@@ -892,9 +892,9 @@
this.query = this.query.toLowerCase(); this.query = this.query.toLowerCase();
} }
if( this.options.enableFullValueFiltering && this.options.filterBehavior !== 'both' ) { if (this.options.enableFullValueFiltering && this.options.filterBehavior !== 'both') {
var valueToMatch = filterCandidate.trim().substring(0, this.query.length); var valueToMatch = filterCandidate.trim().substring(0, this.query.length);
if( this.query.indexOf(valueToMatch) > -1 ){ if (this.query.indexOf(valueToMatch) > -1) {
showElement = true; showElement = true;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment