mirror of
https://gitlab.com/bignutty/labscore.git
synced 2025-06-07 13:43:06 -04:00
antonyms shouldn't be listed in the same group (part of pv2)
This commit is contained in:
parent
bf8d5ce76e
commit
69949588b0
2 changed files with 0 additions and 2 deletions
|
@ -36,7 +36,6 @@ function renderDictionaryEntry(context, result, definition, language) {
|
||||||
let nyms = [];
|
let nyms = [];
|
||||||
|
|
||||||
if(d.synonyms) nyms = nyms.concat(d.synonyms.map((sd)=>smallPill(sd)))
|
if(d.synonyms) nyms = nyms.concat(d.synonyms.map((sd)=>smallPill(sd)))
|
||||||
if(d.antonyms) nyms = nyms.concat(d.antonyms.map((sd)=>pill(sd)))
|
|
||||||
|
|
||||||
// Display up to 6 random synonyms/antonyms
|
// Display up to 6 random synonyms/antonyms
|
||||||
if(nyms.length >= 1) {
|
if(nyms.length >= 1) {
|
||||||
|
|
|
@ -35,7 +35,6 @@ function renderDictionaryEntry(context, result, definition, language) {
|
||||||
let nyms = [];
|
let nyms = [];
|
||||||
|
|
||||||
if(d.synonyms) nyms = nyms.concat(d.synonyms.map((sd)=>smallPill(sd)))
|
if(d.synonyms) nyms = nyms.concat(d.synonyms.map((sd)=>smallPill(sd)))
|
||||||
if(d.antonyms) nyms = nyms.concat(d.antonyms.map((sd)=>pill(sd)))
|
|
||||||
|
|
||||||
// Display up to 6 random synonyms/antonyms
|
// Display up to 6 random synonyms/antonyms
|
||||||
if(nyms.length >= 1) {
|
if(nyms.length >= 1) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue