From edb081fc6870747d3eb46fc1f33e837e826c5cdf Mon Sep 17 00:00:00 2001 From: Alexander Date: Thu, 7 Dec 2017 01:16:10 +0300 Subject: [PATCH] Update index.html --- .../2-create-notification/solution.view/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);