Skip to content

Commit

Permalink
Merge pull request #359 from wbw20/wbw20/zero_width_join
Browse files Browse the repository at this point in the history
Use zero width join character for better rendering in Chrome
  • Loading branch information
ichord committed Dec 1, 2015
2 parents 0c818ae + e820603 commit 3377178
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/js/jquery.atwho.js
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,7 @@ EditableController = (function(superClass) {
if (range = this._getRange()) {
range.setEndAfter(this.query.el[0]);
range.collapse(false);
range.insertNode(suffixNode = this.app.document.createTextNode("\u2060" + suffix));
range.insertNode(suffixNode = this.app.document.createTextNode("\u200D" + suffix));
this._setRange('after', suffixNode, range);
}
if (!this.$inputor.is(':focus')) {
Expand Down
Loading

0 comments on commit 3377178

Please sign in to comment.