4 <meta http-equiv=
"X-UA-Compatible" content=
"IE=EmulateIE7; IE=EmulateIE9">
5 <title>Exported Symbols test
</title>
7 <script type=
"text/javascript" src=
"../excanvas.js"></script>
11 <p>dygraphs exports these symbols into the global namespace:
</p>
15 <p>It exports these symbols inside each of those symbols:
</p>
19 <script type=
"text/javascript">
22 var k, i, html, level2props, sym, topSymbol;
24 windowProps[k] = true;
28 <script type=
"text/javascript" src=
"../dygraph-dev.js"></script>
30 <script type=
"text/javascript" src=
"../dygraph-combined.js"></script>
31 <script type=
"text/javascript">
33 if (!windowProps.hasOwnProperty(k)) {
39 for (i =
0; i < newProps.length; i++) {
40 html += '
<li>' + newProps[i] + '
</li>\n';
42 document.getElementById('list').innerHTML = html;
45 for (i =
0; i < newProps.length; i++) {
46 topSymbol = newProps[i];
47 for (k in window[topSymbol]) {
48 sym = topSymbol + '.' + k;
49 level2props.push(sym);
55 for (i =
0; i < level2props.length; i++) {
56 html += '
<li>' + level2props[i] + '
</li>\n';
58 document.getElementById('list2').innerHTML = html;