Oops, meant to be prepending that style sheet

This commit is contained in:
George Michael Brower 2011-04-18 17:29:24 -07:00
parent 5c709ec018
commit 60d2a580e3

View File

@ -466,7 +466,7 @@ DAT.GUI = function(parameters) {
var styleSheet = document.createElement('style'); var styleSheet = document.createElement('style');
styleSheet.setAttribute('type', 'text/css'); styleSheet.setAttribute('type', 'text/css');
styleSheet.innerHTML = DAT.GUI.inlineCSS; styleSheet.innerHTML = DAT.GUI.inlineCSS;
document.head.appendChild(styleSheet); document.head.insertBefore(styleSheet, document.head.firstChild);
} }
} }