Difference between revisions of "Template:Waterloo/Pages/cal-heatmap-test"

 
(5 intermediate revisions by the same user not shown)
Line 25: Line 25:
 
<div>
 
<div>
 
<h1 id="onClick-placeholder"></h1>
 
<h1 id="onClick-placeholder"></h1>
<div id="notes-table"></div>
+
<ul id="notes-table"></ul>
 
</div>
 
</div>
 
<script type="text/javascript">
 
<script type="text/javascript">
Line 38: Line 38:
 
    cellSize: 32,
 
    cellSize: 32,
 
subDomainTextFormat: "%d",
 
subDomainTextFormat: "%d",
 +
displayLegend: false,
 
onClick: function(date, nb) {
 
onClick: function(date, nb) {
 
$("#onClick-placeholder").html("<b>" +
 
$("#onClick-placeholder").html("<b>" +
Line 43: Line 44:
 
);
 
);
 
var message = ""
 
var message = ""
$.each(notes[month[date.getMonth()]+(date.getDate())], function( index, value ) {
+
var key = month[date.getMonth()]+(date.getDate())
  message += value+"\n";
+
if (key in notes){
  });
+
$.each(notes[key], function( index, value ) {
$("#notes-table").html("<b>" + message
+
  message += "<li>"+value+"</li>";
+ "</b>"
+
  });}
 +
$("#notes-table").html(message
 
);
 
);
 
}
 
}

Latest revision as of 23:53, 13 September 2015