Sha256: 8cf9f886eb8ece3d578b4f8a8e744f3ffcaea2b982bc15fd7c382e722b3117dd

Contents?: true

Size: 641 Bytes

Versions: 4

Compression:

Stored size: 641 Bytes

Contents

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Line Chart</title>
  </head>
  <body>
    <div id="container" style="width:100%; height:100%;"></div>
    <script src="jquery.js"></script>
    <script src="highcharts.js"></script>
    <script type="text/javascript">
    $('#container').height($(document).height());
    $(window).resize(function() {
      console.log($(window).height());
      $('#container').height($(window).height());
    });
    </script>
  </body>
</html>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
mach5-tools-0.3.0 lib/mach5-tools/js/chart.html
mach5-tools-0.2.2 lib/mach5-tools/js/chart.html
mach5-tools-0.2.1 lib/mach5-tools/js/chart.html
mach5-tools-0.2.0 lib/mach5-tools/js/chart.html