Add TLS to HTTP links

Please use HTTPS wherever it is supported.
It is just good practise, you know.

This follows up commit 98924bc12e.
This commit is contained in:
Valters Jansons
2018-02-25 12:31:36 +02:00
parent f32b1d5685
commit e59b69e3f2
4 changed files with 10 additions and 10 deletions

View File

@@ -5,7 +5,7 @@
CM.Cache.AddQueue = function() {
CM.Cache.Queue = document.createElement('script');
CM.Cache.Queue.type = 'text/javascript';
CM.Cache.Queue.setAttribute('src', 'http://aktanusa.github.io/CookieMonster/queue/queue.js');
CM.Cache.Queue.setAttribute('src', 'https://aktanusa.github.io/CookieMonster/queue/queue.js');
document.head.appendChild(CM.Cache.Queue);
}