aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2013-08-14 21:38:58 +0200
committerGravatar Tom Willemse2013-08-14 21:38:58 +0200
commit751936fbde0143ac2409ba50216526b89f558ce9 (patch)
treee12abc08ac9b197fb47581ff03ec84fdcaff3562
parentd3eaa60b630b21f1291b96a3b6e995a56ce6aae4 (diff)
downloadscrumli-751936fbde0143ac2409ba50216526b89f558ce9.tar.gz
scrumli-751936fbde0143ac2409ba50216526b89f558ce9.zip
Don't use absolute http://
Apparently it doesn't play nice together with running on https://.
-rw-r--r--scrumli.lisp12
1 files changed, 6 insertions, 6 deletions
diff --git a/scrumli.lisp b/scrumli.lisp
index bd786a8..18bacb0 100644
--- a/scrumli.lisp
+++ b/scrumli.lisp
@@ -20,27 +20,27 @@
"The host currently running Scrumli. Used by Mozilla Persona.")
(defvar *scrumli-bootstrap-css-location*
- "http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.no-icons.min.css"
+ "//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.no-icons.min.css"
"The location of the twitter bootstrap CSS file.")
(defvar *scrumli-bootstrap-js-location*
- "http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"
+ "//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"
"The location of the twitter bootstrap JS file.")
(defvar *scrumli-font-awesome-css-location*
- "http://netdna.bootstrapcdn.com/font-awesome/3.1.1/css/font-awesome.min.css"
+ "//netdna.bootstrapcdn.com/font-awesome/3.1.1/css/font-awesome.min.css"
"The location of the font awesome CSS file.")
(defvar *scrumli-jquery-js-location*
- "http://code.jquery.com/jquery-2.0.0.min.js"
+ "//code.jquery.com/jquery-2.0.0.min.js"
"The location of the jQuery JS file.")
(defvar *scrumli-react-js-location*
- "http://cdnjs.cloudflare.com/ajax/libs/react/0.3.2/react.min.js"
+ "//cdnjs.cloudflare.com/ajax/libs/react/0.3.2/react.min.js"
"The location of the React JS file.")
(defvar *scrumli-jsxtransformer-js-location*
- "http://cdnjs.cloudflare.com/ajax/libs/react/0.3.2/JSXTransformer.js"
+ "//cdnjs.cloudflare.com/ajax/libs/react/0.3.2/JSXTransformer.js"
"The location of the JSX Transformer JS file.")
(defun logged-in-p ()