Skip to content
This repository has been archived by the owner on Jun 21, 2019. It is now read-only.

Commit

Permalink
Bugfix for issue #25
Browse files Browse the repository at this point in the history
The file was incorrecty merged from Chrome version 4.21.
As a result, the simplified characters were always shown, no matter if 'auto' was chosen or not.
  • Loading branch information
cschiller authored Feb 24, 2019
1 parent 2f4861a commit ac218fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content.js
Original file line number Diff line number Diff line change
Expand Up @@ -963,7 +963,7 @@ var zhongwenContent = {
hanziClass += '-small';
}
var hanziSpan = document.createElement('span');
hanziSpan.textContent = e[2];
hanziSpan.textContent = word;
hanziSpan.className = hanziClass;
fragment.appendChild(hanziSpan);

Expand Down

0 comments on commit ac218fd

Please sign in to comment.