From b8466c0cd7404e85dfd1f291ffe8ad47956d2761 Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Sun, 14 Oct 2018 08:48:41 -0700 Subject: [PATCH] Correctly reset/unset right/bottom --- js/components/App.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/components/App.js b/js/components/App.js index 047f4b98..a3471935 100644 --- a/js/components/App.js +++ b/js/components/App.js @@ -71,8 +71,8 @@ class App extends React.Component { this._webampNode.style.bottom = 0; this._webampNode.style.overflow = "hidden"; this.props.browserWindowSizeChanged(Utils.getWindowSize()); - this._webampNode.style.right = "default"; - this._webampNode.style.bottom = "default"; + this._webampNode.style.right = null; + this._webampNode.style.bottom = null; this._webampNode.style.overflow = "visible"; };