]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/javascript/yui3/build/autocomplete/autocomplete-highlighters-accentfold.js
Release 6.5.0
[Github/sugarcrm.git] / include / javascript / yui3 / build / autocomplete / autocomplete-highlighters-accentfold.js
1 /*
2  Copyright (c) 2010, Yahoo! Inc. All rights reserved.
3  Code licensed under the BSD License:
4  http://developer.yahoo.com/yui/license.html
5  version: 3.3.0
6  build: 3167
7  */
8 YUI.add('autocomplete-highlighters-accentfold',function(Y){var Highlight=Y.Highlight,YArray=Y.Array;Y.mix(Y.namespace('AutoCompleteHighlighters'),{charMatchFold:function(query,results){var queryChars=YArray.unique(query.split(''));return YArray.map(results,function(result){return Highlight.allFold(result.text,queryChars);});},phraseMatchFold:function(query,results){return YArray.map(results,function(result){return Highlight.allFold(result.text,[query]);});},startsWithFold:function(query,results){return YArray.map(results,function(result){return Highlight.allFold(result.text,[query],{startsWith:true});});},wordMatchFold:function(query,results){return YArray.map(results,function(result){return Highlight.wordsFold(result.text,query);});}});},'3.3.0',{requires:['array-extras','highlight-accentfold']});