From ded24387008d0ef9d4d19397202f90ade5ae286e Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Tue, 12 May 2015 16:15:26 -0700 Subject: [PATCH] Add ; to inline style --- static/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/index.js b/static/index.js index b2e580c80..63fa503ee 100644 --- a/static/index.js +++ b/static/index.js @@ -172,7 +172,7 @@ var setupWindowBackground = function() { var backgroundStylesheet = document.createElement('style'); backgroundStylesheet.type = 'text/css'; - backgroundStylesheet.innerText = 'html, body { background: ' + backgroundColor + ' }'; + backgroundStylesheet.innerText = 'html, body { background: ' + backgroundColor + '; }'; document.head.appendChild(backgroundStylesheet); // Remove once the page loads