html5 boiler plate
[scannr.git] / js / flotr2 / examples / profile.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
 
<head>
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  <title>Flotr Example Index Page</title>
  <link rel="stylesheet" href="examples.css" type="text/css" />
  <link rel="stylesheet" href="lib/google-code-prettify/prettify.css" type="text/css" />
</head>
 
<body>
 
<div id="body-container">
 
  <div id="content-container">
    <div id="content">
 
      <h2>Examples:</h2>
      <div id="examples"></div>
      <div id="example-highlight"></div>
 
      <div id="example">
        <h3 id="example-label">Example:</h3>
        <div id="example-graph"></div>
        <div id="example-description"></div>
 
        <div id="example-profile-container">
          <h3>Profile:</h3>
          <div id="example-profile"></div>
        </div>
 
        <div id="example-source-container">
          <h3>Source:</h3>
          <div id="example-source"></div>
          <textarea id="example-editor"></textarea>
          <div id="example-buttons">
            <button id="example-run">Run</button>
            <button id="example-edit">Edit</button>
          </div>
        </div>
      </div>
 
    </div>
  </div>
 
</div>
 
 
 
</body>
 
<script>
  Flotr = {};
  Flotr.ExamplesCallback = function () {
    Profile = new Flotr.Profile();
  };
</script>
 
<script type="text/javascript" src="../lib/yepnope.js"></script>
<script type="text/javascript" src="js/includes.dev.js"></script>
 
</html>