From 2236d2b5fca6cdb70e837180160e78a3619bea07 Mon Sep 17 00:00:00 2001 From: Chris Tsongas <chris.tsongas@gmail.com> Date: Fri, 20 Feb 2015 09:53:12 -0800 Subject: [PATCH] Load jquery over https Application will break if served at a secure URL because the browser won't load jquery over a non-secure connection. --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 5f2767e9..fbd593c0 100644 --- a/index.html +++ b/index.html @@ -19,7 +19,7 @@ <input id="m" autocomplete="off" /><button>Send</button> </form> <script src="https://cdn.socket.io/socket.io-1.2.0.js"></script> - <script src="http://code.jquery.com/jquery-1.11.1.js"></script> + <script src="https://code.jquery.com/jquery-1.11.1.js"></script> <script> var socket = io(); $('form').submit(function(){