PMSI-AlignAlytics / dimple

An object-oriented API for business analytics
Other
2.73k stars 557 forks source link

No HTTPS protocol to request dimple #200

Closed crclayton closed 8 years ago

crclayton commented 8 years ago

In the past I have included the dimple.js with the following tag.

<script src="http://dimplejs.org/dist/dimple.v2.1.6.min.js"></script>

However, recently I've been getting the error:

Mixed Content: The page at '...' was loaded over HTTPS, but requested an insecure script 'http://dimplejs.org/dist/dimple.v2.1.6.min.js'. This request has been blocked; the content must be served over HTTPS.

And I haven't been able to find an HTTPS server to load this library from. Can we get an HTTPS protocol for dimple?

johnkiernander commented 8 years ago

I wouldn't generally recommend accessing the library that way. It's fine for trying out dimple but if you are using it in a published site it would be better to either add it to your server and reference it from there or to use a cdn reference (https://cdnjs.cloudflare.com/ajax/libs/dimple/2.1.6/dimple.latest.min.js).

crclayton commented 8 years ago

That's how it says to include it on the front page here. The cdnjs.cloudflare link you added works though, you might want to update the front page to use that link instead just so first time users don't get hung up on the HTTP security. Thanks for your prompt response!