From baa4ae93b90cd10e203bf37623f027f3c6025c81 Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Wed, 28 Mar 2018 19:16:59 -0700 Subject: [PATCH] Use a more specific name for the DOM node that will contain Winamp Fixes #526 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1ca65836..2f4c39ed 100755 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ npm install --save winamp2-js Create a DOM element somewhere in your HTML document: ``` -
+
``` Initialize Winamp2-js in your JavaScript: @@ -60,7 +60,7 @@ const winamp = new Winamp({ enableHotkeys: true // Enable hotkeys }); // Render after the skin has loaded. -winamp.renderWhenReady(document.getElementById('app')); +winamp.renderWhenReady(document.getElementById('winamp-container')); ``` _Notes:_