Use https not http for CSS files
authorGavin Carothers <gavin@carothers.name>
Wed, 09 Jan 2013 08:58:34 -0800
changeset 571 53c8e57a67c4
parent 570 d3e8ccd67c9c
child 572 894c2176f4ae
child 590 93b224780b7f
Use https not http for CSS files
ReSpec.js/js/respec.js
--- a/ReSpec.js/js/respec.js	Sat Jan 05 12:08:51 2013 -0500
+++ b/ReSpec.js/js/respec.js	Wed Jan 09 08:58:34 2013 -0800
@@ -628,13 +628,13 @@
 //        }
         var css;
         if (statStyle == "unofficial") {
-            css = "http://www.w3.org/StyleSheets/TR/w3c-unofficial";
+            css = "https://www.w3.org/StyleSheets/TR/w3c-unofficial";
         }
         else if (statStyle == "base") {
-            css = "http://www.w3.org/StyleSheets/TR/base";
+            css = "https://www.w3.org/StyleSheets/TR/base";
         }
         else {
-            css = "http://www.w3.org/StyleSheets/TR/W3C-" + statStyle;// + ".css";
+            css = "https://www.w3.org/StyleSheets/TR/W3C-" + statStyle;// + ".css";
         }
         this._insertCSS(css, false);
     },