thomshouse-escher / escher

Escher was a PHP MVC framework developed by Thom Stricklin from 2011-2013. Escher implemented a hybrid of Model2 MVC and PAC architectures and CMS concepts as well as plugins and configuration wizards. Development halted in 2013 in favor of Kohana and later Symfony, which closely aligned to the same design principles as Escher.
http://git.io/escher
4 stars 1 forks source link

loadjQuery() Not working on https #81

Open adetwiler opened 12 years ago

adetwiler commented 12 years ago

loadjQuery() is attempting to load content from an http address, which is considered insecure and blocks it from loading.

the CDN should load as:

//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js

instead of

http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js

to account for http and https.