Skip to content

Commit 45fee92

Browse files
committed
applied patch provided, fixed broken test case 4,5 and 1 not performing assertions Issue #58
1 parent d1ba90d commit 45fee92

File tree

3 files changed

+168
-195
lines changed

3 files changed

+168
-195
lines changed

html/classhelper.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ table tr:hover {
6161
width: 7em;
6262
}
6363

64-
.acc-apply {
64+
.popup-apply {
6565
font-weight: bold;
6666
}
6767

html/classhelper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ class ClassHelper extends HTMLElement {
181181
const handlePopupReadyEvent = (event) => {
182182
// we get a document Fragment in event.detail we replace it with the root
183183
// replaceChild method consumes the documentFragment content, subsequent calls will be no-op.
184-
if (e.detail.childElementCount === 1) {
184+
if (event.detail.childElementCount === 1) {
185185
this.popupRef.document.replaceChild(event.detail, this.popupRef.document.documentElement);
186186
}
187187
}

0 commit comments

Comments
 (0)