File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ const renderIndexStatesAndProperties = (propList) => {
142
142
`<dt><a href="#${ item . title } " class="${ item . is } -reference">${ item . name } </a></dt>\n<dd>${ item . desc } </dd>\n`
143
143
)
144
144
. join ( "" ) ;
145
- indexStatePropPlaceholder . outerHTML = `<dl id="index_state_prop" class="compact" >${ indexStatePropContent } </dl>` ;
145
+ indexStatePropPlaceholder . outerHTML = `<dl id="index_state_prop">${ indexStatePropContent } </dl>` ;
146
146
} ;
147
147
148
148
/**
@@ -450,21 +450,21 @@ const renderIndices = (rdefs) => {
450
450
// spit out the indices
451
451
document . getElementById (
452
452
"index_role"
453
- ) . outerHTML = `<dl id="index_role" class="compact" >${ roleIndex } </dl>` ;
453
+ ) . outerHTML = `<dl id="index_role">${ roleIndex } </dl>` ;
454
454
document . getElementById (
455
455
"index_fromauthor"
456
- ) . outerHTML = `<ul id="index_fromauthor" class="compact" >${ fromAuthor } </ul>` ;
456
+ ) . outerHTML = `<ul id="index_fromauthor">${ fromAuthor } </ul>` ;
457
457
document . getElementById (
458
458
"index_fromcontent"
459
- ) . outerHTML = `<ul id="index_fromcontent" class="compact" >${ fromContent } </ul>` ;
459
+ ) . outerHTML = `<ul id="index_fromcontent">${ fromContent } </ul>` ;
460
460
document . getElementById (
461
461
"index_fromprohibited"
462
- ) . outerHTML = `<ul id="index_fromprohibited" class="compact" >${ fromProhibited } </ul>` ;
462
+ ) . outerHTML = `<ul id="index_fromprohibited">${ fromProhibited } </ul>` ;
463
463
// TODO: remove if-check after w3c/aria#1860
464
464
if ( document . getElementById ( "index_fromheading" ) )
465
465
document . getElementById (
466
466
"index_fromheading"
467
- ) . outerHTML = `<ul id="index_fromheading" class="compact" >${ fromHeading } </ul>` ;
467
+ ) . outerHTML = `<ul id="index_fromheading">${ fromHeading } </ul>` ;
468
468
} ;
469
469
470
470
/**
You can’t perform that action at this time.
0 commit comments