Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Updated resource urls, fixed mixed content loading #1529

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions web/examples/replacing-data.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@
</head>

<body>
<link rel="stylesheet" type="text/css" href="http://dc-js.github.io/dc.js/css/dc.css"/>
<link rel="stylesheet" type="text/css" href="//dc-js.github.io/dc.js/css/dc.css"/>
<div class="container">
<script type="text/javascript" src="header.js"></script>
<script type="text/javascript" src="../js/promise-polyfill.js"></script>
<script type="text/javascript" src="../js/fetch.umd.js"></script>
<script type="text/javascript" src="http://dc-js.github.io/dc.js/js/d3.js"></script>
<script type="text/javascript" src="http://dc-js.github.io/dc.js/js/crossfilter.js"></script>
<script type="text/javascript" src="http://dc-js.github.io/dc.js/js/dc.js"></script>
<script type="text/javascript" src="//dc-js.github.io/dc.js/js/d3.js"></script>
<script type="text/javascript" src="//dc-js.github.io/dc.js/js/crossfilter.js"></script>
<script type="text/javascript" src="//dc-js.github.io/dc.js/js/dc.js"></script>

<div id="chart-ring-year"></div>
<div id="chart-row-spenders"></div>

<p>This page will replace the crossfilter data in 5 seconds. If you modify the filters before then, the filters will be restored.<p>

<p>It's based on <a href="http://stackoverflow.com/questions/32770830/updating-dc-js-data-and-reapplying-original-filters">a question
<p>It's based on <a href="//stackoverflow.com/questions/32770830/updating-dc-js-data-and-reapplying-original-filters">a question
and answer on Stack Overflow</a>; question by geotheory, answer by Ethan Jewett.</p>

<script type="text/javascript">
Expand Down