insecure content infobox in chrome
![]() ![]() |
In chrome I get a "This page has insecure content" infobox when viewing reader on https urls. This is due to the way you are inserting jQuery into the page. If you just required the script it doesn't cause a problem. I've edited the script to add: // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7... removed the addJQuery function and put what was in the content and letsJQuery functions in the global scope of the script. I also removed the createCSSClass function and just did this: var CSS_RULES = ".qf {display:inline; font-size:.8em; color:#C3D6F4; border:1px solid #C3D6F4; margin-left:5px; padding-top: 3px; cursor:pointer;}"
$("head").append(CSS_RULES); |
![]() ![]() |
oops, better to require jquery via https url so all content is secure:
|

