This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[%{ExtraPictures} | |
<div id="mediawell"> | |
<div style="display:none;" class="mediawell-object" id="mediawell-photos"> | |
<%ExtraPictures%> | |
</div> | |
</div> | |
%] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(window).load(function() { | |
pymChild = new pym.Child(); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="center"> | |
<div id="chart"> </div> | |
<script type="text/javascript"> | |
var pymParent = new pym.Parent('chart','http://thegazette.com/data/medicaid-money#amerigroup', {}); | |
</script> | |
<p class="embed-subhead" style="font-size: 18px !important; line-height: 25px !important; font-weight: bold;">To see the full visualization, <a href="http://thegazette.com/data/medicaid-money#amerigroup" target="_blank">click here</a>.</p> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="left"> | |
<div id="daytona500"> </div> | |
<script>// <![CDATA[ | |
var pymParent = new pym.Parent('daytona500','http://thegazette.com/sports/daytona-500-related-links', {}); | |
$('#more-author').addClass('display-none'); | |
// ]]></script> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<htmL> | |
<head> | |
<meta charset="utf-8"> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"> | |
<script src="https://code.jquery.com/jquery-1.12.1.min.js" charset="utf-8"></script> | |
<script src="https://d3js.org/d3.v3.min.js" charset="utf-8"></script> | |
<style> | |
#svg-table, #svg-container { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="chart-container center"> | |
<h3>Adjusted tempo</h3> | |
<div class="lazyload"><!-- | |
<div class="iframe-responsive-container" data-height="320px" data-600-height="250px"> | |
<iframe frameborder="0" src="http://files.gazlab.com/content-host/c3charts/projects/ia-basketball-stats-2016/index.html#chart/adjustedtempo" width="100%"></iframe> | |
</div> | |
--></div> | |
<p>Download the data <a href="https://docs.google.com/spreadsheets/d/1CXSNt2f_oEcNUePR7ZwwCN6_R0AYbMVNC3Ue85_FFs8/edit#gid=0" target="_blank"><strong>here</strong></a></p> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="left"> | |
<h3><a href="http://www.thegazette.com/data/medicaid-explained" target="_blank">Confused by how the new Medicaid system works?</a></h3> | |
<a href="http://www.thegazette.com/data/medicaid-explained" target="_blank"><img style="width: 100%;" src="http://www.thegazette.com/Includes/data/projects/medicaid-explained/img/chapter-2-full.gif" alt="" /></a> | |
<p class="embed-subhead">We're here to help. Click the image above to check out an interactive explanation of Iowa's new Medicaid managed care system.</p> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Holds data for each AJAX call | |
var global_data = {}; | |
var global_data_two = {}; | |
// Put data on Leaflet map | |
function leafletMap() { | |
console.log('Leaflet map creation here'); | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var global_data = {}; | |
$.ajax({ | |
type: "GET", | |
dataType: "json", | |
url: 'https://datagetter.herokuapp.com/arrests.json', | |
success: function(data){ | |
global_data = data; | |
}, | |
complete: function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Holds data for each AJAX call | |
var global_data = {}; | |
var global_data_two = {}; | |
// Do the merge of the data here | |
function mergeData() { | |
console.log('merge data here'); | |
} |