Created
January 8, 2015 01:40
-
-
Save winkler1/1e4fe60f43bb5673cd13 to your computer and use it in GitHub Desktop.
finding tags
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Search tags for [query], find matches, return results. | |
suggestTags(query) { | |
query = query.trim().toLowerCase(); | |
if (!query || query.length<2) { | |
return null; | |
} | |
var goodMatches=[], partialMatches=[], allTags = db.tags; | |
for (var x=0; x<allTags.length; ++x) { | |
var pos=allTags[x].toLowerCase().indexOf(query); | |
if(pos ==0) { | |
goodMatches.push(x); | |
} | |
else if ( pos>0) { | |
partialMatches.push(x); | |
} | |
} | |
return this.makeTags(goodMatches.concat(partialMatches)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment