Difference between revisions of "Team:Waterloo/Notebook"

Line 101: Line 101:
 
<br>
 
<br>
 
<br>
 
<br>
        <div id="cal-heatmap"></div>
+
  <div id="cal-heatmap"></div>
  
        <p style="text-align:center;">Click on a day to view the
+
    <p style="text-align:center;">Click on a day to view the work.</p>
        work.</p><script type="text/javascript">
+
    <script type="text/javascript">
var month = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
+
      var month = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
        var cal = new CalHeatMap();
+
      var cal = new CalHeatMap();
        cal.init({
+
      cal.init({
                start: new Date(2016, 4),
+
              start: new Date(2017, 4),
            data:days,
+
          data:days,
            dataType: "json",
+
          dataType: "json",
            domain : "month",
+
          domain : "month",
            subDomain : "day",
+
          subDomain : "day",
            range : 6,
+
          range : 6,
            cellSize: 24,
+
          cellSize: 24,
                subDomainTextFormat: "%d",
+
              subDomainTextFormat: "%d",
                displayLegend: false,
+
              displayLegend: false,
                onClick: function(date, nb) {
+
              onClick: function(date, nb) {
                $("#onClick-placeholder").html(date.toDateString());
+
              $("#onClick-placeholder").html(date.toDateString());
                var message = ""
+
              var message = ""
                var key = month[date.getMonth()]+(date.getDate())
+
              var key = month[date.getMonth()]+(date.getDate())
                if (key in notes){
+
              if (key in notes){
                $.each(notes[key], function( index, value ) {
+
              $.each(notes[key], function( index, value ) {
                        message += "<li>"+value+"<\/li>";
+
                      message += "<li>"+value+"<\/li>";
                });}
+
              });}
                $("#notes-table").html(message);
+
              $("#notes-table").html(message);
        }
+
      }
        });
+
      });
        </script>
+
    </script>
 +
</div>
 +
 
 +
<div class="content-main">
 +
  <h2 id="onClick-placeholder"></h2>
 +
  <ul id="notes-table"></ul>
 
</div>
 
</div>
  

Revision as of 17:43, 31 October 2017

Notebook



Click on a day to view the work.