From 60d2a580e376ce4838777fb69ffe7d1352601e33 Mon Sep 17 00:00:00 2001 From: George Michael Brower Date: Mon, 18 Apr 2011 17:29:24 -0700 Subject: [PATCH] Oops, meant to be prepending that style sheet --- src/DAT/GUI/GUI.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DAT/GUI/GUI.js b/src/DAT/GUI/GUI.js index 52bf826..28ee4f1 100644 --- a/src/DAT/GUI/GUI.js +++ b/src/DAT/GUI/GUI.js @@ -466,7 +466,7 @@ DAT.GUI = function(parameters) { var styleSheet = document.createElement('style'); styleSheet.setAttribute('type', 'text/css'); styleSheet.innerHTML = DAT.GUI.inlineCSS; - document.head.appendChild(styleSheet); + document.head.insertBefore(styleSheet, document.head.firstChild); } }