Browse Source

relative embed path should support https as well as http

pull/512/head
Joe Germuska 11 years ago
parent
commit
07bdaca8e8
  1. 5
      build/embed/index.html

5
build/embed/index.html

@ -39,7 +39,12 @@
<div id="timeline-embed"></div>
<!-- Override -->
<script type="text/javascript">
var trim_point = window.location.href.indexOf("embed/index.html");
if (trim_point > 0) {
var embed_path = window.location.href.substring(0,trim_point); // support HTTPS via https://s3.amazonaws.com/cdn.knightlab.com/libs/timeline/latest/embed/index.html
} else {
var embed_path = "http://cdn.knightlab.com/libs/timeline/latest/";
}
</script>
<script type="text/javascript" src="../js/storyjs-embed-cdn.js?v214"></script>
<!-- END Timeline Embed-->

Loading…
Cancel
Save