This repository has been archived by the owner on May 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
activities.html
107 lines (91 loc) · 4.43 KB
/
activities.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html>
<head>
<title>SPARKS Module 2: Measuring a Series Circuit</title>
<meta content='text/html; charset=utf-8' http-equiv='Content-Type' />
<link rel="icon" href="https://concord.org/sparks/virtual-electronics/favicon.ico" />
<link href='lib/jquery/css/ui-lightness/jquery-ui-1.8.24.custom.css' rel='stylesheet' type='text/css' />
<link href='https://fonts.googleapis.com/css?family=Anonymous+Pro:700' rel='stylesheet' type='text/css'>
<link href='common/stylesheets/app.css' rel='stylesheet' type='text/css' />
<link href='common/stylesheets/sparks.css' rel='stylesheet' type='text/css' />
<link href="common/stylesheets/breadboard.css" rel="stylesheet" type="text/css" >
<style>
#HTMLLog{display:none;background:#000;color:#c00;height:100px;padding:10px;margin:10px;}
</style>
<script src="lib/raphael-min.js" type="text/javascript"></script>
<script src="client-breadboard-activity.js" type="text/javascript"></script>
<script src="tests/jspec/activities/oscope-activity.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(
['_setAccount', 'UA-6899787-16'],
['_setAllowAnchor', true],
['_trackPageview'],
['b._setAccount', 'UA-6899787-18'],
['b._setAllowAnchor', true],
['b._trackPageview']
);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div class="wrapper" id="wrapper">
<div class="wrapper-title" style="height: 100px; padding-left: 25px; background-color: eeeeee; border-bottom: solid #999999">
<a href="https://learn.concord.org/sparks/">
<img class='no_border' src='common/icons/sparks-left-logo.png' style="float:left; height: 90px; margin: 5px"/>
</a>
<h1 style="padding: 25px; margin-left: 90px">
<span id="title"></span>
</h1>
<span id="share-prompt">About this model</span>
</div>
<div id="primary">
<div id="loading">
<img src="common/icons/ajax-loader.gif" style="float: left; padding: 10px"/>
<div id="loading-text" style="padding-top: 17px">
Loading activity
</div>
</div>
<div id="breadboard_wrapper">
<div id="oscope_mini" style="display: none;"></div>
<div id="fg_mini" style="display: none;"></div>
<div id="add_components" style="display: none;">
<div id="component_drawer" class="retracted"></div>
<button id="add_components_btn">Add a new Component</button>
</div>
<div id="breadboard" style="width: 800px; height: 500px; display: none;">
<div style=" text-align: center; border: 1px solid gray;">
<img style="vertical-align: middle; height: 498px;" src="common/images/loading.gif"/>
</div>
</div>
</div>
<div id="image">
</div>
<br style="clear:both" />
<p/>
<p/>
<div id="questions_area">
</div>
</div>
<div id="footer">
<span id="return_to_portal"><img src="common/icons/return.png">Return to the SPARKS Portal</span>
<div class="footer-inner">
<p id="footer_right"></p>
</div>
</div>
</div>
<div id="share-panel" style="display: none;">
<span id="close-share">X</span>
<div class="copyright-section">
<strong>Copyright © 2016 </strong><a class="opens-in-new-window" href="https://concord.org" id="share-license-link" target="_blank">The Concord Consortium</a>. All rights reserved.
The content is licensed under <a class="opens-in-new-window" href="https://creativecommons.org/licenses/by/4.0/" id="share-license-link" target="_blank">CC BY 4.0</a>.
The software is licensed under <a class="opens-in-new-window" href="http://opensource.org/licenses/MIT" id="share-license-link" target="_blank">MIT</a>.
Please provide attribution to the Concord Consortium and the URL <a class="opens-in-new-window" href="https://concord.org/" id="share-license-link" target="_blank">https://concord.org</a>.
</div>
</div>
</body>
</html>