Merge pull request #131 from todoubaba/translate
Processing sibling with children only
This commit is contained in:
commit
89195ee681
|
@ -80,6 +80,10 @@ td, th {
|
|||
h2 {
|
||||
border-bottom: 1px solid $silver;
|
||||
}
|
||||
p {
|
||||
margin: 0 0 24px 0;
|
||||
line-height: 28px;
|
||||
}
|
||||
}
|
||||
|
||||
body, .main-nav .main-nav-button,.translated-cn code {
|
||||
|
|
|
@ -28,7 +28,8 @@ var sourceVisible = localStorage.getItem('source-visible') === 'true';
|
|||
|
||||
// ignore example code.
|
||||
if (node.classList.contains('code-example') ||
|
||||
node.tagName === 'CODE-EXAMPLE') {
|
||||
node.tagName === 'CODE-EXAMPLE' ||
|
||||
node.tagName === 'SCRIPT') {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
@ -51,6 +52,7 @@ var sourceVisible = localStorage.getItem('source-visible') === 'true';
|
|||
case 'TH':
|
||||
case 'UL':
|
||||
case 'OL':
|
||||
case 'DIV':
|
||||
processContainer(node);
|
||||
break;
|
||||
default:
|
||||
|
@ -81,7 +83,9 @@ var sourceVisible = localStorage.getItem('source-visible') === 'true';
|
|||
if (sibling) {
|
||||
if (isClonedNode(current, sibling)) {
|
||||
if (isPureEnglish(current.textContent)) {
|
||||
processContainer(sibling);
|
||||
if (sibling.children) {
|
||||
processContainer(sibling);
|
||||
}
|
||||
$current.addClass('original-english');
|
||||
$sibling.addClass('translated');
|
||||
$sibling.addClass('translated-cn');
|
||||
|
|
Loading…
Reference in New Issue