diff --git a/2-ui/1-document/08-styles-and-classes/2-create-notification/solution.view/index.html b/2-ui/1-document/08-styles-and-classes/2-create-notification/solution.view/index.html index 5b8a6336..dc4eeec9 100755 --- a/2-ui/1-document/08-styles-and-classes/2-create-notification/solution.view/index.html +++ b/2-ui/1-document/08-styles-and-classes/2-create-notification/solution.view/index.html @@ -26,7 +26,7 @@ notification.style.top = top + 'px'; notification.style.right = right + 'px'; - notification.innerHTML = options.html; + notification.innerHTML = html; document.body.append(notification); setTimeout(() => notification.remove(), 1500);