Add ; to inline style

This commit is contained in:
Kevin Sawicki 2015-05-12 16:15:26 -07:00
parent 943df49300
commit ded2438700

View File

@ -172,7 +172,7 @@ var setupWindowBackground = function() {
var backgroundStylesheet = document.createElement('style'); var backgroundStylesheet = document.createElement('style');
backgroundStylesheet.type = 'text/css'; backgroundStylesheet.type = 'text/css';
backgroundStylesheet.innerText = 'html, body { background: ' + backgroundColor + ' }'; backgroundStylesheet.innerText = 'html, body { background: ' + backgroundColor + '; }';
document.head.appendChild(backgroundStylesheet); document.head.appendChild(backgroundStylesheet);
// Remove once the page loads // Remove once the page loads