Skip to content

Commit

Permalink
Merge pull request phacility#14 from kdelong/master
Browse files Browse the repository at this point in the history
Typeahead: allow ideographic whitespace for token separation
  • Loading branch information
Evan Priestley committed Mar 5, 2012
2 parents e919289 + 0377293 commit 3001459
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/control/typeahead/source/TypeaheadSource.js
Expand Up @@ -262,7 +262,7 @@ JX.install('TypeaheadSource', {
if (!str.length) {
return [];
}
return str.split(/ /g);
return str.split(/\s/g);
},
_defaultTransformer : function(object) {
return {
Expand Down

0 comments on commit 3001459

Please sign in to comment.