Replies: 0
Using the free version: I’m having a problem when clicking on an event that the pop up window appears but is completely blank. It turns out that functions_for_xml_and_ajax.php
load jquery using a specific http://
URI. Since my site is https-only the browser refuses to load it.
Please remove the http: protocol prefix on the two lines in that file that load jQuery. This solves the problem locally but I would prefer not to have to re-fix it after every update.
e.g. change:
http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js
to:
//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js
Thanks,
Steve